mediagalleryプラグインの文字化け修正
2007-09-25 00:37
投稿者: サイト管理者
【mediagalleryプラグイン】
geeklog/public_html/mediagallery/classAlbum.php
730行
$aTitle = substr( $this->title, 0, 25 ) . '...';
↓
$aTitle = mb_substr( $this->title, 0, 25 ) . '...';
780行
$aTitle = substr( $this->title, 0, 25 ) . '...';
↓
$aTitle = mb_substr( $this->title, 0, 25 ) . '...';
803行
$aTitle = substr( $this->title, 0, 25 ) . '...';
↓
$aTitle = mb_substr( $this->title, 0, 25 ) . '...';
825行
$aTitle = substr( $this->title, 0, 25 ) . '...';
↓
$aTitle = mb_substr( $this->title, 0, 25 ) . '...';
843行
$aTitle = substr( $this->title, 0, 25 ) . '...';
↓
$aTitle = mb_substr( $this->title, 0, 25 ) . '...';
関連記事
【mediagalleryプラグイン】
geeklog/plugins/mediagallery/funcsions.inc
416行
$str .= substr($title,0,$titleLength);
↓
$str .= mb_substr($title,0,$titleLength);
771行
} elseif (substr ($part,0, 6) == 'title:' ) {
↓
} elseif (mb_substr ($part,0, 6) == 'title:' ) {
775行
} elseif (substr ($part, 0, 5) == 'dest:') {
↓
} elseif (mb_substr ($part, 0, 5) == 'dest:') {
関連記事
Geeklog実験室
http://geeklogtest.maryn.jp/article.php/20070925003754303