Browse Source

Change phpsqlitedatatype to php_sqlite_data_type.

markjcrane 9 years ago
parent
commit
f8df399ee4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/pdo.php

+ 1 - 1
resources/pdo.php

@@ -167,7 +167,7 @@ if ($db_type == "sqlite") {
 				$db->sqliteCreateFunction('md5', 'php_md5', 1);
 				$db->sqliteCreateFunction('unix_timestamp', 'php_unix_timestamp', 1);
 				$db->sqliteCreateFunction('now', 'php_now', 0);
-				$db->sqliteCreateFunction('sqlitedatatype', 'phpsqlitedatatype', 2);
+				$db->sqliteCreateFunction('sqlitedatatype', 'php_sqlite_data_type', 2);
 				$db->sqliteCreateFunction('strleft', 'php_left', 2);
 				$db->sqliteCreateFunction('strright', 'php_right', 2);
 		}