5
Quote:
And in the preferences section the different section headings don't look quite right.
For instance the first one "General" has a text box containing "head" in it. Not sure what it is supposed to look like but guessing this is not right. The other catagories I see are...
Photo
Information
Rss
Admin
Graphic library
Comments and notifications
All of these have a text box with "head" as the contents.
this options just work on xoops 2.5 - please check module whit xoops 2.5
Quote:
Notice: Undefined index: photo_date in file /modules/extgallery/public-album.php line 115
Notice: Undefined index: photo_date in file /modules/extgallery/public-album.php line 115
Notice: Undefined index: photo_date in file /modules/extgallery/public-album.php line 115
fixed
Quote:
Notice: Undefined variable: cat in file /modules/extgallery/public-userphoto.php line 122
fixed
Quote:
Unknown: Assigning the return value of new by reference is deprecated in file /modules/extgallery/class/pear/Image/Transform.php line 225
Unknown: Assigning the return value of new by reference is deprecated in file /modules/extgallery/class/pear/PEAR.php line 563
Unknown: Assigning the return value of new by reference is deprecated in file /modules/extgallery/class/pear/PEAR.php line 566
I can fix it whit change
if ($skipmsg) {
$a =& new $ec($code, $mode, $options, $userinfo);
return $a;
} else {
$a =& new $ec($message, $code, $mode, $options, $userinfo);
return $a;
}
to
if ($skipmsg) {
$a = new $ec($code, $mode, $options, $userinfo);
return $a;
} else {
$a = new $ec($message, $code, $mode, $options, $userinfo);
return $a;
}
but I don't know it work whit php 5.2 or not