|
|
Re: [2.5.0stable]bug in msglist.php [message #11460 is a reply to message #11446] |
Mon, 30 June 2003 06:09 |
|
gladiator
Messages: 61 Registered: June 2002 Location: Beijing
Karma: 0
|
Member |
|
|
prottoss wrote on Mon, 30 June 2003 01:40 | The white space is intentional and should remain as is.
|
I fully understand the white space is intentional in the array msglist_arr, but when it comes to the line
<?php if (($s = strpos($data, $v . ':')) === FALSE) ?>
the 'if' condition here will always return FALSE if string in $v still contain a prefixed white space.....and, the msg file won't change after we click the button "Edit".
[Updated on: Thu, 31 July 2003 18:58] Report message to a moderator
|
|
|
Re: [2.5.0stable]bug in msglist.php [message #11467 is a reply to message #11446] |
Mon, 30 June 2003 08:35 |
|
gladiator
Messages: 61 Registered: June 2002 Location: Beijing
Karma: 0
|
Member |
|
|
found another bug in msglist.php:
I noticed last change of msglist.php in cvs is changed line 95 from
<?php if (($s = strpos($data, $v)) === FALSE) { ?>
to
<?php if (($s = strpos($data, $v . ':')) === FALSE) { ?>
,
I found that this change should apply to the line 191 too.
[Updated on: Mon, 30 June 2003 08:36] Report message to a moderator
|
|
|