Author Topic: [1.7] Cant display \\# (i.e \\2 or \\4 or \\9)  (Read 18929 times)

0 Members and 1 Guest are viewing this topic.

Offline V@no

  • If you don't tell me what to do, I won't tell you where you should go :)
  • Global Moderator
  • 4images Guru
  • *****
  • Posts: 17.849
  • mmm PHP...
    • View Profile
    • 4images MODs Demo
[1.7] Cant display \\# (i.e \\2 or \\4 or \\9)
« on: June 15, 2003, 04:15:25 AM »
By default 4images replaces all \\xx (where xx is number 0-9)  with \\1
For testing purpose, try add anywhere (in any template or any variable that will be printed in a template) this: \\7 u'll see that it will be replaced by \\1
to fix that, in /includes/template.php remove marked:
Quote
 function clean_template($template) {
    $search_array = array(
      "/".$this->start."[^ \t\r\n".$this->end."]+".$this->end."/",
      "/".$this->start."if[ \t\r\n]+[^ \t\r\n".$this->end."]+".$this->end."/",
      "/".$this->start."endif[ \t\r\n]+[^ \t\r\n".$this->end."]+".$this->end."/",
      "/$([0-9])/",
      "/\([0-9])/"

    );
    $replace_array = array(
      "",
      "",
      "",
      '$\1',
      '\\\1'

    );

NOTE: dont forget delete comas!
« Last Edit: July 16, 2005, 08:10:24 PM by V@no »
Your first three "must do" before you ask a question:
Please do not PM me asking for help unless you've been specifically asked to do so. Such PMs will be deleted without answer. (forum rule #6)
Extension for Firefox/Thunderbird: Master Password+    Back/Forward History Tweaks (restartless)    Cookies Manager+    Fit Images (restartless for Thunderbird)