aboutsummaryrefslogtreecommitdiffstats
path: root/admin/include/themes.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/include/themes.class.php')
-rw-r--r--admin/include/themes.class.php13
1 files changed, 7 insertions, 6 deletions
diff --git a/admin/include/themes.class.php b/admin/include/themes.class.php
index 41ee5f336..cf81fb54e 100644
--- a/admin/include/themes.class.php
+++ b/admin/include/themes.class.php
@@ -114,12 +114,13 @@ class themes
if (empty($errors))
{
- $query = "
-INSERT INTO ".THEMES_TABLE."
- SET id = '".$theme_id."'
- , version = '".$this->fs_themes[$theme_id]['version']."'
- , name = '".$this->fs_themes[$theme_id]['name']."'
-;";
+ $query = '
+INSERT INTO '.THEMES_TABLE.'
+ (id, version, name)
+ VALUES(\''.$theme_id.'\',
+ \''.$this->fs_themes[$theme_id]['version'].'\',
+ \''.$this->fs_themes[$theme_id]['name'].'\')
+;';
pwg_query($query);
}
break;