]> source.dussan.org Git - nextcloud-server.git/commitdiff
dont double escape
authorRobin Appelman <robin@icewind.nl>
Thu, 26 Jan 2017 11:15:26 +0000 (12:15 +0100)
committerRobin Appelman <robin@icewind.nl>
Thu, 30 Mar 2017 09:14:59 +0000 (11:14 +0200)
Signed-off-by: Robin Appelman <robin@icewind.nl>
lib/private/DB/AdapterOCI8.php
lib/private/DB/AdapterSqlite.php

index e23f74345ae7000d0211177ab1166c964bc1bb3d..359e4ba1b677290b9e729e661cfc24ebe1968925 100644 (file)
@@ -41,7 +41,6 @@ class AdapterOCI8 extends Adapter {
        const UNIX_TIMESTAMP_REPLACEMENT = "(cast(sys_extract_utc(systimestamp) as date) - date'1970-01-01') * 86400";
 
        public function fixupStatement($statement) {
-               $statement = preg_replace('( LIKE \?)', '$0 ESCAPE \'\\\'', $statement);
                $statement = preg_replace('/`(\w+)` ILIKE \?/', 'REGEXP_LIKE(`$1`, \'^\' || REPLACE(?, \'%\', \'.*\') || \'$\', \'i\')', $statement);
                $statement = str_replace('`', '"', $statement);
                $statement = str_ireplace('NOW()', 'CURRENT_TIMESTAMP', $statement);
index 7a69cb7e8c222dc34cc1c6a5316b166f9310a677..5507699c54a9cd7d2e25ff209aa340fe28c80d69 100644 (file)
@@ -41,7 +41,6 @@ class AdapterSqlite extends Adapter {
        }
 
        public function fixupStatement($statement) {
-               $statement = preg_replace('( I?LIKE \?)', '$0 ESCAPE \'\\\'', $statement);
                $statement = preg_replace('/`(\w+)` ILIKE \?/', 'LOWER($1) LIKE LOWER(?)', $statement);
                $statement = str_replace( '`', '"', $statement );
                $statement = str_ireplace( 'NOW()', 'datetime(\'now\')', $statement );