This fixes
Bug Report [1214822] "Avatar-Gallery doesn't work for
non-english sites"
as well as
Bug Report [1372662] "Avatar gallery view pages invalid"
both reported over at the phpwsbb tracker.
202c202
< $this->_current_gallery =
stripslashes($_REQUEST['IMGLib_current_gallery']);
---
> $this->_current_gallery =
str_replace(array('.','::'), array('','/'),
stripslashes($_REQUEST['IMGLib_current_gallery']));
290c290
< case 'Show Gallery':
---
> default:
382c382
< .
'&IMGLib_current_gallery='.$this->_current_gallery
---
> . '&IMGLib_current_gallery='.str_replace('/',
'::', $this->_current_gallery)
Logged In: YES
user_id=722742
I'd fixed the default: one yesterday already quite independently as I was running
through other changes with ImageLib.
Added this to cvs now.