Skip to content

Commit

Permalink
Item1574: minor fix of an error introduced by r3877
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@3880 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
GilmarSantosJr authored and GilmarSantosJr committed May 11, 2009
1 parent 36c71b7 commit 8c42b92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/lib/Foswiki/Prefs/Stack.pm
Expand Up @@ -313,7 +313,7 @@ sub restore {
$this->{'map'}{$p} &= $mask;

while ( length( $this->{'map'}{$p} ) > 0
&& ord( substr( $this->{'map'}, -1 ) ) == 0 )
&& ord( substr( $this->{'map'}{$p}, -1 ) ) == 0 )
{
substr( $this->{'map'}{$p}, -1 ) = '';
}
Expand Down

0 comments on commit 8c42b92

Please sign in to comment.