FEhlermeldung auf jeder Seite

Phoca Gallery - image gallery extension
mjohn2101
Phoca Newbie
Phoca Newbie
Posts: 2
Joined: 29 Sep 2008, 00:05

FEhlermeldung auf jeder Seite

Post 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?
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 49279
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: FEhlermeldung auf jeder Seite

Post 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
If you find Phoca extensions useful, please support the project
mjohn2101
Phoca Newbie
Phoca Newbie
Posts: 2
Joined: 29 Sep 2008, 00:05

Re: FEhlermeldung auf jeder Seite

Post 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
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 49279
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: FEhlermeldung auf jeder Seite

Post by Jan »

ok
If you find Phoca extensions useful, please support the project
Post Reply