]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-theme_edit.php
Some more wrappers added, code cleanups:
[mailer.git] / inc / modules / admin / what-theme_edit.php
index cc0f464db5607be39bd5d367f967cc8428c1dbbe..4bb84530d2e292afee9717b7643e79546246b4c2 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";