diff options
author | Felix Moeller <mail@felixmoeller.de> | 2012-10-23 23:01:10 +0200 |
---|---|---|
committer | Felix Moeller <mail@felixmoeller.de> | 2012-10-23 23:01:10 +0200 |
commit | 561cbb2de69a31934c22fc28332b5a14b6fcfc68 (patch) | |
tree | 502f17c451cd4af82ebc9fe797d34d662b1831ae /lib/MDB2 | |
parent | e73b817a38a824b3119136ea110eda4be15b99d5 (diff) | |
download | nextcloud-server-561cbb2de69a31934c22fc28332b5a14b6fcfc68.tar.gz nextcloud-server-561cbb2de69a31934c22fc28332b5a14b6fcfc68.zip |
NoSpaceAfterComma II
Diffstat (limited to 'lib/MDB2')
-rw-r--r-- | lib/MDB2/Driver/Function/sqlite3.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MDB2/Driver/Function/sqlite3.php b/lib/MDB2/Driver/Function/sqlite3.php index 235a106e183..0bddde5bf3f 100644 --- a/lib/MDB2/Driver/Function/sqlite3.php +++ b/lib/MDB2/Driver/Function/sqlite3.php @@ -94,7 +94,7 @@ class MDB2_Driver_Function_sqlite3 extends MDB2_Driver_Function_Common if (!is_null($length)) { return "substr($value,$position,$length)"; } - return "substr($value,$position,length($value))"; + return "substr($value, $position, length($value))"; } // }}} |