]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-theme_edit.php
Fixes for wrong tewmplate names, new network added:
[mailer.git] / inc / modules / admin / what-theme_edit.php
index 6fc4f5055721dc3cff99809f494a7239c33d8115..4b84e0498915c04e3649b3d0530fea7fc7086bbd 100644 (file)
@@ -51,12 +51,12 @@ if (!isExtensionActive('theme')) {
 } // END - if
 
 // Check for selected themes
-if (countPostSelection() > 0) {
+if (ifPostContainsSelections()) {
        $OUT = '';
        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,14 +106,14 @@ $result = SQL_QUERY("SELECT
        `id`,
        `theme_path`,
        `theme_active`,
-       `theme_ver`,
+       `theme_ver` AS `theme_version`,
        `theme_name`
 FROM
        `{?_MYSQL_PREFIX?}_themes`
 ORDER BY
        `theme_path` ASC", __FILE__, __LINE__);
 
-if (SQL_NUMROWS($result) > 0) {
+if (!SQL_HASZERONUMS($result)) {
        while ($content = SQL_FETCHARRAY($result)) {
                // Construct IFN
                $inc = sprintf("theme/%s/theme.php", $content['theme_path']);