Update of /cvsroot/phpwiki/phpwiki/lib
In directory usw-pr-cvs1:/tmp/cvs-serv5263/lib
Modified Files:
ErrorManager.php
Log Message:
Fix typo.
Index: ErrorManager.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/ErrorManager.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ErrorManager.php 2001/09/18 19:16:23 1.1
--- ErrorManager.php 2001/11/06 17:13:22 1.2
***************
*** 324,328 ****
$errstr = htmlspecialchars(array_shift($lines));
foreach ($lines as $key => $line)
! $lines[$key] = "<li>" . htmlspecialchars($line) . "<\li>";
if ($lines)
$errstr .= "<ul>\n" . join("\n", $lines) . "\n</ul>";
--- 324,328 ----
$errstr = htmlspecialchars(array_shift($lines));
foreach ($lines as $key => $line)
! $lines[$key] = "<li>" . htmlspecialchars($line) . "</li>";
if ($lines)
$errstr .= "<ul>\n" . join("\n", $lines) . "\n</ul>";
|