Menu

#77 PHPWS_IMGLib bug fixes

Core Class
closed-fixed
Code/Logic (73)
5
2006-02-26
2006-02-23
Eloi George
No

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.

The following patch is from CVS version 1.6:

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)

Discussion

  • Shaun Murray

    Shaun Murray - 2006-02-26

    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.

     
  • Shaun Murray

    Shaun Murray - 2006-02-26
    • status: open --> closed-fixed
     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.