[Tep-j-general] Re: NEWS2モジュールで・・・

Back to archive index

TAMURA Toshihiko tamur****@bitsc*****
2004年 7月 20日 (火) 14:45:05 JST


こんにちは、田村です。

林さん:

> このNEWS、イメージタグで写真を指定しても、受け付けてもらえないようですが、
> せめて本文中にこのタグだけでも効かせるようには
> 改造できないものなのでしょうか?

クォートされた文字列の取り扱いがまずかったようですね。
次の3箇所を変更してみてください。

●admin/news2.php 56行目
------------------------------------------------------------
    $sql_data_array = array('title' => $title,
                            'short_article' => $short_article,
                            'author' => $author,
                            'date_available' => $date_available,
                            'long_article' => $long_article,
                            'status' => $status);
------------------------------------------------------------
  ...tep_db_inputを削除(tep_db_perform中でtep_db_inputが呼ばれているため)

●catalog/news_view.php 24行目
------------------------------------------------------------
    $long_article=stripslashes($news[long_article]);
------------------------------------------------------------
  ...stripslashesを追加

●catalog/includes/modules/news/news.php 11行目
------------------------------------------------------------
    $short_article=stripslashes($news[short_article]);
------------------------------------------------------------
  ...stripslashesを追加


-- 
田村敏彦 / 株式会社ビットスコープ
E-mail:tamur****@bitsc*****
http://www.bitscope.co.jp/





Tep-j-general メーリングリストの案内
Back to archive index