From: <var...@us...> - 2012-12-04 16:56:44
|
Revision: 8599 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8599&view=rev Author: vargenau Date: 2012-12-04 16:56:36 +0000 (Tue, 04 Dec 2012) Log Message: ----------- Use smart quotes Modified Paths: -------------- trunk/lib/WikiDB/backend/file.php trunk/lib/WikiDB/backend/flatfile.php Modified: trunk/lib/WikiDB/backend/file.php =================================================================== --- trunk/lib/WikiDB/backend/file.php 2012-12-04 13:26:06 UTC (rev 8598) +++ trunk/lib/WikiDB/backend/file.php 2012-12-04 16:56:36 UTC (rev 8599) @@ -108,7 +108,7 @@ if ($version != 0) $pd['version'] = $version; if (!is_array($pd)) - ExitWiki(sprintf(gettext("'%s': corrupt file"), + ExitWiki(sprintf(gettext("“%s”: corrupt file"), htmlspecialchars($filename))); else return $pd; Modified: trunk/lib/WikiDB/backend/flatfile.php =================================================================== --- trunk/lib/WikiDB/backend/flatfile.php 2012-12-04 13:26:06 UTC (rev 8598) +++ trunk/lib/WikiDB/backend/flatfile.php 2012-12-04 16:56:36 UTC (rev 8599) @@ -81,7 +81,7 @@ $pd['pagename'] = $pagename; //if ($version != 0) $pd['version'] = $version; if (!is_array($pd)) - ExitWiki(sprintf(gettext("'%s': corrupt file"), + ExitWiki(sprintf(gettext("“%s”: corrupt file"), htmlspecialchars($filename))); } fclose($fd); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |