Hallo,
habe folgende Dateien verändert:
pcheck.php
Vorher:
PHP-Code:
bilanz ('-',$mail_stat['verdienst'],'Paidmail');
Jetzt:
PHP-Code:
bilanz ('-',$mail['verdienst'],'Paidmail');
Vorher:
PHP-Code:
bilanz ('+',$mail['preis'],'Paidmail');
Jetzt:
PHP-Code:
if ($mail['preis'] > 0) bilanz ('+',$mail['preis'],'Paidmail');
topframe_betau.php
Vorher:
PHP-Code:
bilanz ('-',$verdienst,'Surfbar');
Jetzt:
PHP-Code:
bilanz ('-',$b,'Surfbar');
content/wms/autosurf.php & content/wms/paidlinks.php & content/wms/paidmail.php & content/wms/hforcedbanner.php
Vorher:
PHP-Code:
bilanz ('+',$forced['preis'],'WMS');
Jetzt:
PHP-Code:
bilanz ('+',$gesamtpreis,'WMS');
content/wms/forcedbanner.php
Vorher:
PHP-Code:
bilanz ('+',$verdienst,'WMS');
Jetzt:
PHP-Code:
bilanz ('+',$gesamtpreis,'WMS');
Somit dürfte es nun gehen, Problem war einfach das du die völlig falschen Variablen genommen hast.
Gruß
Gremlin