diff options
author | Michelle Jones <michelledeannejones@gmail.com> | 2013-02-28 15:44:47 +0100 |
---|---|---|
committer | Michelle Jones <michelledeannejones@gmail.com> | 2013-02-28 15:44:47 +0100 |
commit | 31875730b3cb67e865e99e748f885c5365339c9e (patch) | |
tree | 28e39356ca77e019faced97811e7d22826d0d2a9 /system/database/DB_utility.php | |
parent | b76e29242fd399c47ec633152092f9ce7ac917fc (diff) |
added spaces after the parameter separators
Diffstat (limited to 'system/database/DB_utility.php')
-rw-r--r-- | system/database/DB_utility.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/database/DB_utility.php b/system/database/DB_utility.php index 9803307ed..b270cdd4d 100644 --- a/system/database/DB_utility.php +++ b/system/database/DB_utility.php @@ -238,7 +238,7 @@ abstract class CI_DB_utility { $out .= $enclosure.str_replace($enclosure, $enclosure.$enclosure, $name).$enclosure.$delim; } - $out = substr(rtrim($out),0,-strlen($delim)); // Remove the trailing delimiter character(s) at the end of the column names + $out = substr(rtrim($out), 0, -strlen($delim)); // Remove the trailing delimiter character(s) at the end of the column names $out = $out.$newline; // Next blast through the result array and build out the rows @@ -248,7 +248,7 @@ abstract class CI_DB_utility { { $out .= $enclosure.str_replace($enclosure, $enclosure.$enclosure, $item).$enclosure.$delim; } - $out = substr(rtrim($out),0,-strlen($delim)); // Remove the trailing delimiter character(s) at the end of the row lines + $out = substr(rtrim($out), 0, -strlen($delim)); // Remove the trailing delimiter character(s) at the end of the row lines $out = rtrim($out).$newline; } |