From: <var...@us...> - 2012-12-05 14:16:41
|
Revision: 8603 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8603&view=rev Author: vargenau Date: 2012-12-05 14:16:30 +0000 (Wed, 05 Dec 2012) Log Message: ----------- Revert wrong smart quotes Modified Paths: -------------- trunk/lib/plugin/SystemInfo.php Modified: trunk/lib/plugin/SystemInfo.php =================================================================== --- trunk/lib/plugin/SystemInfo.php 2012-12-04 18:15:38 UTC (rev 8602) +++ trunk/lib/plugin/SystemInfo.php 2012-12-05 14:16:30 UTC (rev 8603) @@ -507,7 +507,7 @@ $args['seperator'] = ' '; $availableargs = // name => callback + 0 args array('appname' => create_function('', "return 'PhpWiki';"), - 'version' => create_function('', "return sprintf(“%s”, PHPWIKI_VERSION);"), + 'version' => create_function('', "return sprintf('%s', PHPWIKI_VERSION);"), 'LANG' => create_function('', 'return $GLOBALS["LANG"];'), 'LC_ALL' => create_function('', 'return setlocale(LC_ALL, 0);'), 'current_language' => create_function('', 'return $GLOBALS["LANG"];'), This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |