From c354130aa1bd5f181402416ed36790872f51b80c Mon Sep 17 00:00:00 2001 From: Arthur Portugal Date: Thu, 22 Oct 2009 11:24:35 -0500 Subject: [PATCH] Removed duplicated get_lang for the notebook DT#5496 --- main/notebook/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/notebook/index.php b/main/notebook/index.php index 810722a0f6..981396a022 100755 --- a/main/notebook/index.php +++ b/main/notebook/index.php @@ -36,12 +36,12 @@ event_access_tool(TOOL_NOTEBOOK); // tool name if ( isset($_GET['action']) && $_GET['action'] == 'addnote') { - $tool = get_lang('NoteAddNew'); + $tool = 'NoteAddNew'; $interbreadcrumb[] = array ("url"=>"index.php", "name"=> get_lang('Notebook')); } if ( isset($_GET['action']) && $_GET['action'] == 'editnote') { - $tool = get_lang('ModifyNote'); + $tool = 'ModifyNote'; $interbreadcrumb[] = array ("url"=>"index.php", "name"=> get_lang('Notebook')); }