summaryrefslogtreecommitdiffstats
path: root/system/helpers
diff options
context:
space:
mode:
authorMichiel Vugteveen <michiel@it-can.nl>2012-06-06 20:20:27 +0200
committerMichiel Vugteveen <michiel@it-can.nl>2012-06-06 20:20:27 +0200
commit9640a037c51c1efea2e64caa974c577dc1594f5d (patch)
treedd4bca2550f0bc7d7bfa16fe5c07c2284ebe8b71 /system/helpers
parent910ff7ad430f47ebcf3d801314fcee9a3c10f011 (diff)
fixes
Diffstat (limited to 'system/helpers')
-rw-r--r--system/helpers/form_helper.php11
1 files changed, 7 insertions, 4 deletions
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php
index 04d11837e..40c7d8823 100644
--- a/system/helpers/form_helper.php
+++ b/system/helpers/form_helper.php
@@ -325,7 +325,10 @@ if ( ! function_exists('form_dropdown'))
$selected = array($_POST[$name]);
}
- if ($extra !== '') $extra = ' '.$extra;
+ if ($extra != '')
+ {
+ $extra = ' '.$extra;
+ }
$multiple = (count($selected) > 1 && strpos($extra, 'multiple') === FALSE) ? ' multiple="multiple"' : '';
@@ -702,7 +705,7 @@ if ( ! function_exists('set_select'))
return '';
}
}
- elseif (($field === '' OR $value === '') OR ($field !== $value))
+ elseif (($field == '' OR $value == '') OR ($field != $value))
{
return '';
}
@@ -753,7 +756,7 @@ if ( ! function_exists('set_checkbox'))
return '';
}
}
- elseif (($field === '' OR $value === '') OR ($field !== $value))
+ elseif (($field == '' OR $value == '') OR ($field != $value))
{
return '';
}
@@ -806,7 +809,7 @@ if ( ! function_exists('set_radio'))
}
else
{
- if (($field === '' OR $value === '') OR ($field !== $value))
+ if (($field == '' OR $value == '') OR ($field != $value))
{
return '';
}