[Svn-src-all:2674] [version-2_12-dev 21573] #1603 スペルミスを修正

h_yoshimoto admin @ mail.ec-cube.net
2012年 3月 2日 (金) 11:17:04 JST


Subversion committed to /home/svn/open 21573
http://svn.ec-cube.net/open_trac/changeset/21573
┌────────────────────────────┐
│更新者 :  h_yoshimoto                                  │
│更新日時:  2012-03-02 11:17:03 +0900 (金, 02  3月 2012)│
└────────────────────────────┘

Log:
--------------------------------------------------------
#1603 スペルミスを修正

Changed:                      [U:修正,A:追加,D:削除]
--------------------------------------------------------
U   branches/version-2_12-dev/data/class/SC_View.php

変更: branches/version-2_12-dev/data/class/SC_View.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_View.php	2012-03-01 17:11:15 UTC (rev 21572)
+++ branches/version-2_12-dev/data/class/SC_View.php	2012-03-02 02:17:03 UTC (rev 21573)
@@ -115,8 +115,8 @@
      * @return void
      */
     function registFilter() {
-        $this->_smarty->register_prefilter(array(&$this, 'prefilter_transforme'));
-        $this->_smarty->register_outputfilter(array(&$this, 'outputfilter_transforme'));
+        $this->_smarty->register_prefilter(array(&$this, 'prefilter_transform'));
+        $this->_smarty->register_outputfilter(array(&$this, 'outputfilter_transform'));
     }
 
     /**
@@ -125,10 +125,10 @@
      * @param Smarty_Compiler $smarty Smartyのコンパイラクラス
      * @return string $source ソース
      */
-    function prefilter_transforme($source, &$smarty) {
+    function prefilter_transform($source, &$smarty) {
         // フックポイントを実行.
         $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->objPage->plugin_activate_flg);
-        $objPlugin->doAction('prefilterTransforme', array(&$source, $this->objPage));
+        $objPlugin->doAction('prefilterTransform', array(&$source, $this->objPage));
         return $source;
     }
 
@@ -138,10 +138,10 @@
      * @param Smarty_Compiler $smarty Smartyのコンパイラクラス
      * @return string $source ソース
      */
-    function outputfilter_transforme($source, &$smarty) {
+    function outputfilter_transform($source, &$smarty) {
         // フックポイントを実行.
         $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->objPage->plugin_activate_flg);
-        $objPlugin->doAction('outputfilterTransforme', array(&$source, $this->objPage));
+        $objPlugin->doAction('outputfilterTransform', array(&$source, $this->objPage));
         return $source;
     }
 




Svn-src-all メーリングリストの案内