openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit f0cabc070a0b7738185d70727ae78a42895b7018
parent 17fce0e7d640a640170d96b40f5d3d81b8d83754
Author: Jan Dankert <devnull@localhost>
Date:   Sat, 21 Jul 2012 02:55:53 +0200

Korrektur: Icons

Diffstat:
Rthemes/default/images/icon_language_list.png -> themes/default/images/icon_languagelist.png | 0
Rthemes/default/images/icon_model_list.png -> themes/default/images/icon_modellist.png | 0
Dthemes/default/images/icon_project_list.png | 0
Rthemes/default/images/icon_template_list.png -> themes/default/images/icon_templatelist.png | 0
Dthemes/default/images/icon_user_list.png | 0
Mutil/ProjectTree.class.php | 6+++---
6 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/themes/default/images/icon_language_list.png b/themes/default/images/icon_languagelist.png Binary files differ. diff --git a/themes/default/images/icon_model_list.png b/themes/default/images/icon_modellist.png Binary files differ. diff --git a/themes/default/images/icon_project_list.png b/themes/default/images/icon_project_list.png Binary files differ. diff --git a/themes/default/images/icon_template_list.png b/themes/default/images/icon_templatelist.png Binary files differ. diff --git a/themes/default/images/icon_user_list.png b/themes/default/images/icon_user_list.png Binary files differ. diff --git a/util/ProjectTree.class.php b/util/ProjectTree.class.php @@ -284,7 +284,7 @@ class ProjectTree extends AbstractTree $treeElement->text = lang('GLOBAL_TEMPLATES'); $treeElement->url = Html::url('template','listing',0,array(REQ_PARAM_TARGETSUBACTION=>'listing',REQ_PARAM_TARGET=>'content')); $treeElement->description= lang('GLOBAL_TEMPLATES_DESC'); - $treeElement->icon = 'template_list'; + $treeElement->icon = 'templatelist'; $treeElement->action = 'templatelist'; $treeElement->target = 'content'; $treeElement->type = 'templates'; @@ -299,7 +299,7 @@ class ProjectTree extends AbstractTree $treeElement->action = 'languagelist'; $treeElement->text = lang('GLOBAL_LANGUAGES'); $treeElement->url = Html::url('language','listing',0,array(REQ_PARAM_TARGETSUBACTION=>'listing',REQ_PARAM_TARGET=>'content')); - $treeElement->icon = 'language_list'; + $treeElement->icon = 'languagelist'; $treeElement->description= lang('GLOBAL_LANGUAGES_DESC'); $treeElement->target = 'content'; @@ -323,7 +323,7 @@ class ProjectTree extends AbstractTree $treeElement->text = lang('GLOBAL_MODELS'); $treeElement->url = Html::url('model','listing',0,array(REQ_PARAM_TARGETSUBACTION=>'listing',REQ_PARAM_TARGET=>'content')); $treeElement->action = 'modellist'; - $treeElement->icon = 'model_list'; + $treeElement->icon = 'modellist'; $treeElement->target = 'content'; $this->addTreeElement( $treeElement );