summaryrefslogtreecommitdiffstats
path: root/system/helpers
diff options
context:
space:
mode:
authorEric Barnes <eric@ericlbarnes.com>2011-01-11 14:52:09 +0100
committerEric Barnes <eric@ericlbarnes.com>2011-01-11 14:52:09 +0100
commit7b3be2fbcf62791918be5fe6d5c42eb005eb7342 (patch)
treec28a90e0a29385dd08b27569d0e13cbb2732924e /system/helpers
parentdac1b468d5432ff9166fe221ac520b5050a65f0e (diff)
Changed || to OR to match coding standards
Diffstat (limited to 'system/helpers')
-rw-r--r--system/helpers/inflector_helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/inflector_helper.php b/system/helpers/inflector_helper.php
index 3d9acfcf0..88f48d48e 100644
--- a/system/helpers/inflector_helper.php
+++ b/system/helpers/inflector_helper.php
@@ -93,7 +93,7 @@ if ( ! function_exists('plural'))
}
elseif ($end == 'h')
{
- if (substr($str, -2) == 'ch' || substr($str, -2) == 'sh')
+ if (substr($str, -2) == 'ch' OR substr($str, -2) == 'sh')
{
$str .= 'es';
}