diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 460780709..7771a8536 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1093,7 +1093,7 @@ function system_theme_data() { $engines = drupal_system_listing('\.engine$', 'themes/engines'); // Remove all theme engines from the system table - db_query("DELETE FROM {system} WHERE type = 'theme_engine'"); + db_query("DELETE FROM {system} WHERE type = '%s'", 'theme_engine'); foreach ($engines as $engine) { // Insert theme engine into system table |