Changeset 1650

Show
Ignore:
Timestamp:
03/01/10 09:09:47 (5 months ago)
Author:
klemens
Message:

ulLWidget: don't encode html entities

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/plugins/ullCorePlugin/lib/form/widget/ullWidget.php

    r1460 r1650  
    6363  protected function handleSuffixOption($value) 
    6464  { 
    65     $suffix = $this->getOption('suffix'); 
    66     $value = esc_entities(($suffix) ? $value . ' ' . $suffix : $value); 
    67      
     65    if ($suffix = $this->getOption('suffix')) 
     66    { 
     67      // removed esc_entities because it makes trouble for mailing 
     68//      $value = esc_entities(($suffix) ? $value . ' ' . $suffix : $value); 
     69      $value = $value . ' ' . $suffix; 
     70    } 
    6871    return $value; 
    6972  }