aboutsummaryrefslogtreecommitdiff
path: root/views/default/admin/components
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-29 23:54:04 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-29 23:54:04 +0000
commit947eda7867df1f4846f18fc0326ff0ed20626c34 (patch)
tree75aecbac51ef5aa67fc2e747fffb3d80ad4ab502 /views/default/admin/components
parentdcba493d8defdeb9ab6f41bf07826474bc41e9a6 (diff)
downloadelgg-947eda7867df1f4846f18fc0326ff0ed20626c34.tar.gz
elgg-947eda7867df1f4846f18fc0326ff0ed20626c34.tar.bz2
stage 1 in moving the forms markup to elgg- namespaced css - buttons still need work
git-svn-id: http://code.elgg.org/elgg/trunk@7763 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/admin/components')
-rw-r--r--views/default/admin/components/plugin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/admin/components/plugin.php b/views/default/admin/components/plugin.php
index 60a1e3f86..ae611af07 100644
--- a/views/default/admin/components/plugin.php
+++ b/views/default/admin/components/plugin.php
@@ -50,10 +50,10 @@ if ($vars['order'] < $vars['maxorder']) {
if ($active) {
$url = elgg_get_site_url()."action/admin/plugins/disable?plugin=$plugin&__elgg_token=$token&__elgg_ts=$ts";
- $enable_disable = '<a class="elgg-cancel-button" href="' . elgg_format_url($url) . '">' . elgg_echo('disable') . '</a>';
+ $enable_disable = '<a class="elgg-button elgg-cancel-button" href="' . elgg_format_url($url) . '">' . elgg_echo('disable') . '</a>';
} else {
$url = elgg_get_site_url()."action/admin/plugins/enable?plugin=$plugin&__elgg_token=$token&__elgg_ts=$ts";
- $enable_disable = '<a class="elgg-submit-button" href="' . elgg_format_url($url) . '">' . elgg_echo('enable') . '</a>';
+ $enable_disable = '<a class="elgg-button elgg-submit-button" href="' . elgg_format_url($url) . '">' . elgg_echo('enable') . '</a>';
}