diff options
Diffstat (limited to 'includes/theme.inc')
-rw-r--r-- | includes/theme.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index a8790ea67..a4b0b1274 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -127,7 +127,7 @@ function list_theme_engines($refresh = FALSE) { if (!$list) { $list = array(); - $result = db_query("SELECT * FROM {system} where type = 'theme_engine' AND status = '1' ORDER BY name"); + $result = db_query("SELECT * FROM {system} WHERE type = 'theme_engine' AND status = '1' ORDER BY name"); while ($engine = db_fetch_object($result)) { if (file_exists($engine->filename)) { $list[$engine->name] = $engine; @@ -591,7 +591,7 @@ function theme_submenu($links) { */ function theme_table($header, $rows, $attributes = NULL) { - $output = '<table '. drupal_attributes($attributes) .">\n"; + $output = '<table'. drupal_attributes($attributes) .">\n"; // Format the table header: if (is_array($header)) { |