Index: branches/feature-module-update/data/class/SC_View.php
===================================================================
--- branches/feature-module-update/data/class/SC_View.php	(revision 15279)
+++ branches/feature-module-update/data/class/SC_View.php	(revision 15281)
@@ -192,65 +192,3 @@
     }
 }
-
-//function sfCutString($str, $len, $byte = true, $commadisp = true) {
-//        if($byte) {
-//            if(strlen($str) > ($len + 2)) {
-//                $ret =substr($str, 0, $len);
-//                $cut = substr($str, $len);
-//            } else {
-//                $ret = $str;
-//                $commadisp = false;
-//            }
-//        } else {
-//            if(mb_strlen($str) > ($len + 1)) {
-//                $ret = mb_substr($str, 0, $len);
-//                $cut = mb_substr($str, $len);
-//            } else {
-//                $ret = $str;
-//                $commadisp = false;
-//            }
-//        }
-//
-//        // 絵文字タグの途中で分断されないようにする。
-//        if (isset($cut)) {
-//            // 分割位置より前の最後の [ 以降を取得する。
-//            $head = strrchr($ret, '[');
-//
-//            // 分割位置より後の最初の ] 以前を取得する。
-//            $tail_pos = strpos($cut, ']');
-//            if ($tail_pos !== false) {
-//                $tail = substr($cut, 0, $tail_pos + 1);
-//            }
-//
-//            // 分割位置より前に [、後に ] が見つかった場合は、[ から ] までを
-//            // 接続して絵文字タグ1個分になるかどうかをチェックする。
-//            if ($head !== false && $tail_pos !== false) {
-//                $subject = $head . $tail;
-//                if (preg_match('/^\[emoji:e?\d+\]$/', $subject)) {
-//                    // 絵文字タグが見つかったので削除する。
-//                    $ret = substr($ret, 0, -strlen($head));
-//                }
-//            }
-//        }
-//
-//        if($commadisp){
-//            $ret = $ret . "...";
-//        }
-//        return $ret;
-//    }
-//
-//function sfRmDupSlash($istr){
-//        if(ereg("^http://", $istr)) {
-//            $str = substr($istr, 7);
-//            $head = "http://";
-//        } else if(ereg("^https://", $istr)) {
-//            $str = substr($istr, 8);
-//            $head = "https://";
-//        } else {
-//            $str = $istr;
-//        }
-//        $str = ereg_replace("[/]+", "/", $str);
-//        $ret = $head . $str;
-//        return $ret;
-//    }
 ?>
