Results 1 to 2 of 2
  1. #1
    Join Date
    May 2006
    Posts
    18
    Plugin Contributions
    0

    Default 1.3.7.1: EZ Pages editor fails to properly escape backslash

    I wrote a small block of javascript that included some backslashes in an easy page. I noted that \ gets erased on save, and \\ is turned into \ (double into single backslash). This would seem to indicate that something is failing to properly escape backslashes before passing them to the database. Perhaps this code is expecting stuff to be pre-slashed by php?

    Wayne

  2. #2
    Join Date
    Sep 2007
    Posts
    21
    Plugin Contributions
    1

    bug Re: 1.3.7.1: EZ Pages editor fails to properly escape backslash

    This same problem was ruining some client-side JavaScript I was putting in an ez-page. I found out why this happens too. That old enemy stripslashes() is the culprit and it's being called without first seeing if get_magic_quotes_gpc() is true.
    The state of Magic quotes should never be assumed and its use is condemned anyway. I think the same problem arises elsewhere too.

    You can fix it by correcting the second line of zen_db_prepare_input() (about line line 83 of database.php):
    Code:
    return trim(get_magic_quotes_gpc() ? stripslashes($string) : $string);
    Last edited by emupilot; 29 Sep 2007 at 12:17 PM. Reason: extra info

 

 

Similar Threads

  1. Plain Text editor munging code in define pages editor
    By TecBrat in forum Customization from the Admin
    Replies: 2
    Last Post: 24 Feb 2013, 12:19 PM
  2. Define Pages Editor has only text editor no more html
    By faynart in forum General Questions
    Replies: 4
    Last Post: 13 Dec 2011, 08:03 PM
  3. Using a text editor instead of Define Pages Editor
    By Cookiepus in forum General Questions
    Replies: 3
    Last Post: 3 Feb 2010, 03:12 PM
  4. Replies: 2
    Last Post: 10 Aug 2008, 10:04 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR