1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-23 06:33:22 +02:00

And more notice removals.

Also some plugin GUI clean-up (rss, tagwords, trackback)
This commit is contained in:
Tijn Kuyper
2012-12-08 15:52:40 +01:00
parent 5290bb8ea4
commit f07434a3cb
29 changed files with 217 additions and 234 deletions

View File

@@ -1738,7 +1738,7 @@ class e_form
{
case 'options':
if($attributes['type']=='method') // Allow override with 'options' function.
if($attributes['type'] == "method") // Allow override with 'options' function.
{
$attributes['mode'] = "read";
if(isset($attributes['method']) && $attributes['method'] && method_exists($this, $attributes['method']))
@@ -1865,7 +1865,7 @@ class e_form
$opts = $wparms['__options'];
unset($wparms['__options']);
if(vartrue($opts['multiple']) || $attributes['data']=='comma')
if(vartrue($opts['multiple']) || vartrue($attributes['data']) == 'comma')
{
$ret = array();
$value = is_array($value) ? $value : explode(',', $value);