Index: branches/version-2_12-dev/data/mtb_constants_init.php
===================================================================
--- branches/version-2_12-dev/data/mtb_constants_init.php	(revision 21449)
+++ branches/version-2_12-dev/data/mtb_constants_init.php	(revision 21452)
@@ -134,6 +134,4 @@
 /** 登録できるサブ商品の数 */
 define('HTML_TEMPLATE_SUB_MAX', 12);
-/** 文字数が多すぎるときに強制改行するサイズ(半角) */
-define('LINE_LIMIT_SIZE', 60);
 /** 誕生日月ポイント */
 define('BIRTH_MONTH_POINT', 0);
Index: branches/version-2_12-dev/data/class/SC_View.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_View.php	(revision 21441)
+++ branches/version-2_12-dev/data/class/SC_View.php	(revision 21452)
@@ -45,5 +45,4 @@
         $this->_smarty->register_modifier('sfTrimURL', array("SC_Utils_Ex", 'sfTrimURL'));
         $this->_smarty->register_modifier('sfMultiply', array("SC_Utils_Ex", 'sfMultiply'));
-        $this->_smarty->register_modifier('sfPutBR', array("SC_Utils_Ex", 'sfPutBR'));
         $this->_smarty->register_modifier('sfRmDupSlash', array("SC_Utils_Ex", 'sfRmDupSlash'));
         $this->_smarty->register_modifier('sfCutString', array("SC_Utils_Ex", 'sfCutString'));
Index: branches/version-2_12-dev/data/class/util/SC_Utils.php
===================================================================
--- branches/version-2_12-dev/data/class/util/SC_Utils.php	(revision 21450)
+++ branches/version-2_12-dev/data/class/util/SC_Utils.php	(revision 21452)
@@ -824,26 +824,4 @@
     }
 
-    /* 文字列に強制的に改行を入れる */
-    function sfPutBR($str, $size) {
-        $i = 0;
-        $cnt = 0;
-        $line = array();
-        $ret = "";
-
-        while ($str[$i] != "") {
-            $line[$cnt].=$str[$i];
-            $i++;
-            if (strlen($line[$cnt]) > $size) {
-                $line[$cnt].="<br />";
-                $cnt++;
-            }
-        }
-
-        foreach ($line as $val) {
-            $ret.=$val;
-        }
-        return $ret;
-    }
-
     // 二回以上繰り返されているスラッシュ[/]を一つに変換する。
     function sfRmDupSlash($istr){
