Minahito
minah****@users*****
2007年 3月 5日 (月) 12:22:46 JST
Index: xoops2jp/html/core/XCube_Utils.class.php diff -u xoops2jp/html/core/XCube_Utils.class.php:1.1.2.5.2.2 xoops2jp/html/core/XCube_Utils.class.php:1.1.2.5.2.3 --- xoops2jp/html/core/XCube_Utils.class.php:1.1.2.5.2.2 Mon Feb 26 15:42:28 2007 +++ xoops2jp/html/core/XCube_Utils.class.php Mon Mar 5 12:22:46 2007 @@ -2,7 +2,7 @@ /** * * @package XCube - * @version $Id: XCube_Utils.class.php,v 1.1.2.5.2.2 2007/02/26 06:42:28 minahito Exp $ + * @version $Id: XCube_Utils.class.php,v 1.1.2.5.2.3 2007/03/05 03:22:46 minahito Exp $ * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license * @@ -58,9 +58,9 @@ $message = str_replace("{" . ($i) . "}", $variables[$i], $message); // Temporary.... - $message = str_replace("{" . ($i) . ":ucfirst}", ucfirst($variables[$i]), $message); - $message = str_replace("{" . ($i) . ":strtolower}", strtolower($variables[$i]), $message); - $message = str_replace("{" . ($i) . ":strtoupper}", strtoupper($variables[$i]), $message); + $message = str_replace("{" . ($i) . ":ucFirst}", ucfirst($variables[$i]), $message); + $message = str_replace("{" . ($i) . ":toLower}", strtolower($variables[$i]), $message); + $message = str_replace("{" . ($i) . ":toUpper}", strtoupper($variables[$i]), $message); } return $message;