]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-theme_edit.php
Generic function accepts eights (!) but optional parameter $callback, ext-network...
[mailer.git] / inc / modules / admin / what-theme_edit.php
index cc0f464db5607be39bd5d367f967cc8428c1dbbe..4b84e0498915c04e3649b3d0530fea7fc7086bbd 100644 (file)
@@ -56,7 +56,7 @@ if (ifPostContainsSelections()) {
        foreach (postRequestParameter('sel') as $id => $sel) {
                $sql = '';
                // Shall I de-/activate or delete themes?
-               if (isPostRequestParameterSet(('status'))) {
+               if (isPostRequestParameterSet('status')) {
                        // Change status
                        if (postRequestParameter('active', $id) == 'Y') {
                                $sql = "UPDATE `{?_MYSQL_PREFIX?}_themes` SET `theme_active`='N' WHERE `id`=%s LIMIT 1";
@@ -106,7 +106,7 @@ $result = SQL_QUERY("SELECT
        `id`,
        `theme_path`,
        `theme_active`,
-       `theme_ver`,
+       `theme_ver` AS `theme_version`,
        `theme_name`
 FROM
        `{?_MYSQL_PREFIX?}_themes`