From: <var...@us...> - 2014-10-01 10:29:08
|
Revision: 9144 http://sourceforge.net/p/phpwiki/code/9144 Author: vargenau Date: 2014-10-01 10:29:06 +0000 (Wed, 01 Oct 2014) Log Message: ----------- Avoid backslash Modified Paths: -------------- trunk/lib/ErrorManager.php Modified: trunk/lib/ErrorManager.php =================================================================== --- trunk/lib/ErrorManager.php 2014-10-01 10:08:54 UTC (rev 9143) +++ trunk/lib/ErrorManager.php 2014-10-01 10:29:06 UTC (rev 9144) @@ -263,7 +263,7 @@ echo "<head>\n"; echo "<meta charset=\"UTF-8\" />\n"; echo "<title>Fatal Error</title>\n"; - echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"themes/default/phpwiki.css\" />\n"; + echo '<link rel="stylesheet" type="text/css" href="themes/default/phpwiki.css" />'."\n"; echo "</head>\n"; echo "<body>\n"; echo "<div style=\"font-weight:bold; color:red\">Fatal Error:</div>\n"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |