2010-06-08 Miguel de Dios <miguel.dedios@artica.es>

* godmode/reporting/reporting_builder.main.php: changed the text of button
	for more clear mean.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2875 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2010-06-08 16:10:23 +00:00
parent 952b554824
commit 26ce52103f
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2010-06-08 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php: changed the text of button
for more clear mean.
2010-06-08 Miguel de Dios <miguel.dedios@artica.es> 2010-06-08 Miguel de Dios <miguel.dedios@artica.es>
* DEBIAN/conffiles: re-changed the conffiles for try solved a bug in the * DEBIAN/conffiles: re-changed the conffiles for try solved a bug in the

View File

@ -27,12 +27,12 @@ $groups = get_user_groups ();
switch ($action) { switch ($action) {
case 'new': case 'new':
$actionButtonHtml = print_submit_button(__('Add'), 'add', false, 'class="sub wand"', true); $actionButtonHtml = print_submit_button(__('Save'), 'add', false, 'class="sub wand"', true);
$hiddenFieldAction = 'save'; $hiddenFieldAction = 'save';
break; break;
case 'update': case 'update':
case 'edit': case 'edit':
$actionButtonHtml = print_submit_button(__('Edit'), 'edit', false, 'class="sub upd"', true); $actionButtonHtml = print_submit_button(__('Update'), 'edit', false, 'class="sub upd"', true);
$hiddenFieldAction = 'update'; $hiddenFieldAction = 'update';
break; break;
} }