Development

Changeset 1430

You must first sign up to be able to contribute.

Changeset 1430

Show
Ignore:
Timestamp:
06/13/06 13:55:51 (2 years ago)
Author:
fabien
Message:

Fix the value obtained by passing ESC_RAW as the escaping method to be more as expected (closes #624 - patch from Mike Squire)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/view/escaper/sfOutputEscaper.class.php

    r1415 r1430  
    7575  public static function escape($escapingMethod, $value) 
    7676  { 
    77     if (is_null($value) || ($value === false)
     77    if (is_null($value) || ($value === false) || ($escapingMethod === 'esc_raw')
    7878    { 
    7979      return $value;