summaryrefslogtreecommitdiffstats
path: root/frontends/php/actionconf.php
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/php/actionconf.php')
-rw-r--r--frontends/php/actionconf.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/frontends/php/actionconf.php b/frontends/php/actionconf.php
index f9ef70b2..fc94f1ec 100644
--- a/frontends/php/actionconf.php
+++ b/frontends/php/actionconf.php
@@ -306,13 +306,13 @@
));
}
$footerButtons = array();
- array_push($footerButtons, new CButton('group_enable','enable selected',
+ array_push($footerButtons, new CButton('group_enable','Enable selected',
"return Confirm('Enable selected actions?');"));
array_push($footerButtons, SPACE);
- array_push($footerButtons, new CButton('group_disable','disable selected',
+ array_push($footerButtons, new CButton('group_disable','Disable selected',
"return Confirm('Disable selected actions?');"));
array_push($footerButtons, SPACE);
- array_push($footerButtons, new CButton('group_delete','delete selected',
+ array_push($footerButtons, new CButton('group_delete','Delete selected',
"return Confirm('Delete selected action?');"));
$tblActions->SetFooter(new CCol($footerButtons),'table_footer');