Quote:
|
Originally Posted by omegatron I guess now I would need more information on your setup to see why it works for me and not you. |
All 2 galleries are on the same server. So technically there should be no difference. I investigated further.
Both mentioned installations have been german versions of PP513 -> 514
I tried now the 513 to 514 upgrade with a third gallery:
- again on the same server
- again same way of upgrading
- again same files
so the only difference is the language file.
And surprisingly, on this third gallery (english language) it works 100% correct.
So the bug must have to do with the choosen language. I guess there is somewhere the "yes" and "no" option hardcoded and if it is "ja" and "nein" instead of the english terms, nothing happens.
I know that the yes and no option is in uploadphoto.tmpl file hardcoded:
--------------
if ( $Globals['usenotify'] == "yes" && $User['userid'] != 0 ) {
echo<<<PPPRINT
<tr>
<td class="{$Style['tddetails']}" align="left">{$Globals['pp_lang']['notify']}</span></td>
<td class="{$Style['tddetails']}" align="left"><select name="notify"><option selected="selected">{$Globals['pp_lang']['no']}</option><option>{$Globals['pp_lang']['yes']}</option></select></td>
</tr>
PPPRINT;
}
--------------
So probably this has something to do with the bug.
Any ideas what has to be changed?