diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-08-19 15:41:57 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-08-19 15:41:57 +0000 |
commit | fa25c7a0ca13b57f098f0d2a2f7379ce73086723 (patch) | |
tree | dbc21e6623702f93fbb93e74b0ac33691c8b3011 /modules/path/path.module | |
parent | feb61eea867a51bf061c0a7067126539810c34ec (diff) | |
download | brdo-fa25c7a0ca13b57f098f0d2a2f7379ce73086723.tar.gz brdo-fa25c7a0ca13b57f098f0d2a2f7379ce73086723.tar.bz2 |
- Code improvements by Stefan: use capital letters for header titles (and added some missing t() functions).
Diffstat (limited to 'modules/path/path.module')
-rw-r--r-- | modules/path/path.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/path/path.module b/modules/path/path.module index cee8385fb..52279451d 100644 --- a/modules/path/path.module +++ b/modules/path/path.module @@ -252,9 +252,9 @@ function path_perm() { function path_overview() { $sql = 'SELECT * FROM {url_alias}'; $header = array( - array('data' => t('alias'), 'field' => 'dst', 'sort' => 'asc'), - array('data' => t('system'), 'field' => 'src'), - array('data' => t('operations'), 'colspan' => 2) + array('data' => t('Alias'), 'field' => 'dst', 'sort' => 'asc'), + array('data' => t('System'), 'field' => 'src'), + array('data' => t('Operations'), 'colspan' => 2) ); $sql .= tablesort_sql($header); $result = pager_query($sql, 50); |