summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorRick Ellis <rick.ellis@ellislab.com>2008-09-23 22:01:33 +0200
committerRick Ellis <rick.ellis@ellislab.com>2008-09-23 22:01:33 +0200
commitfaa6d09ad2347e31189134ab8e4cde7d0e84e81b (patch)
treea6074e380c8d50ac368b182dad02dfc6cca8ce07 /system
parent0c9e2700ee0950ada00205d60151224505203dd7 (diff)
Cleaned up a comment
Diffstat (limited to 'system')
-rw-r--r--system/libraries/Form_validation.php9
1 files changed, 2 insertions, 7 deletions
diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php
index df57f80ff..4bbb6f2dd 100644
--- a/system/libraries/Form_validation.php
+++ b/system/libraries/Form_validation.php
@@ -608,13 +608,8 @@ class CI_Form_validation {
{
if ( ! method_exists($this, $rule))
{
- /*
- * Run the native PHP function if called for
- *
- * If our own wrapper function doesn't exist we see
- * if a native PHP function does. Users can use
- * any native PHP function call that has one param.
- */
+ // If our own wrapper function doesn't exist we see if a native PHP function does.
+ // Users can use any native PHP function call that has one param.
if (function_exists($rule))
{
$result = $rule($postdata);