summaryrefslogtreecommitdiff
path: root/modules/system/system.admin.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-04-30 06:48:27 +0000
committerDries Buytaert <dries@buytaert.net>2008-04-30 06:48:27 +0000
commit4bc5d8d244bf152629e5a6738ddab2dd0d225896 (patch)
tree403410fb4230cab045a2e4a0f629d09a010ddc44 /modules/system/system.admin.inc
parent917b27d6884b99faca66d41cd0f345eebde736a5 (diff)
downloadbrdo-4bc5d8d244bf152629e5a6738ddab2dd0d225896.tar.gz
brdo-4bc5d8d244bf152629e5a6738ddab2dd0d225896.tar.bz2
- Patch #127295 by yhager: module version numbers should always be shown left-to-right.
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r--modules/system/system.admin.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index dc14d891c..fc7868cc2 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -2106,7 +2106,7 @@ function theme_system_modules($form) {
$row[] = '<strong>' . drupal_render($form['name'][$key]) . '</strong>';
}
- $row[] = drupal_render($form['version'][$key]);
+ $row[] = array('data' => drupal_render($form['version'][$key]), 'class' => 'version');
$row[] = array('data' => $description, 'class' => 'description');
$rows[] = $row;
}