Page 1 of 1

FEhlermeldung auf jeder Seite

Posted: 29 Sep 2008, 00:20
by mjohn2101
Hi,

Ich nutze Joomla 1.5.6. und Phoca Gallery 2.0.0. Ich habe es gerade installiert


Notice: Only variables should be assigned by reference in /mnt/web5/12/18/51487518/htdocs/components/com_phocagallery/helpers/phocagallery.php on line 129

Es handelt sich hier jeweils um die Zeile:
$icon = &PhocaGalleryHelperFront::getFormatIcon();

Was hab ich falsch gemacht?

Re: FEhlermeldung auf jeder Seite

Posted: 29 Sep 2008, 14:43
by Jan
Hi, it seems like your php version should be upgraded, it has problems with &

$icon = &PhocaGalleryHelperFront::getFormatIcon();

to

$icon = PhocaGalleryHelperFront::getFormatIcon();

you can remove the & but it is not a solution, because you get errors on other places in your joomla site...

Jan

Re: FEhlermeldung auf jeder Seite

Posted: 29 Sep 2008, 17:47
by mjohn2101
hi,
so i removed the "&" and now all the error messages are gone so far...

many thx for your help

Marc

www.feuerwehr-wachtberg.de

Re: FEhlermeldung auf jeder Seite

Posted: 29 Sep 2008, 22:50
by Jan
ok