Introduced 'per-what-word-wrapping
[mailer.git] / inc / modules / admin / what-extensions.php
index c787c6bb35bb8add903c9b7f38a0552b55ce7085..36abfe44a367e242abc52cfea866db7d1ecebe9d 100644 (file)
@@ -281,29 +281,29 @@ switch ($do) {
        case 'overview': // List all registered extensions
                if (isExtensionInstalledAndNewer('sql_patches', '0.0.6')) {
                        // Load extension data with CSS informations
-                       $result = SQL_QUERY("SELECT
-       `id` AS `ext_id`,
+                       $result = SQL_QUERY('SELECT
+       `ext_id`,
        `ext_name`,
        `ext_active`,
-       `ext_has_css` AS `ext_css`,
+       `ext_css`,
        `ext_version`
 FROM
        `{?_MYSQL_PREFIX?}_extensions`
-".$where."
+' . $where . '
 ORDER BY
-       `ext_name` ASC", __FILE__, __LINE__);
+       `ext_name` ASC', __FILE__, __LINE__);
                } else {
                        // Load extension data without CSS informations
-                       $result = SQL_QUERY("SELECT
-       `id` AS `ext_id`,
+                       $result = SQL_QUERY('SELECT
+       `ext_id`,
        `ext_name`,
        `ext_active`,
        `ext_version`
 FROM
        `{?_MYSQL_PREFIX?}_extensions`
-".$where."
+' . $where . '
 ORDER BY
-       `ext_name` ASC", __FILE__, __LINE__);
+       `ext_name` ASC', __FILE__, __LINE__);
                }
 
                // Are there some entries?