]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
disabled => elgg-state-disabled in plugins (only found in blog and groups)
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>
Thu, 10 Feb 2011 23:20:21 +0000 (23:20 +0000)
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>
Thu, 10 Feb 2011 23:20:21 +0000 (23:20 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@8098 36083f99-b078-4883-b0ff-0f9b5a30f544

mod/blog/views/default/forms/blog/save.php
mod/groups/views/default/groups/edit.php
mod/groups/views/default/groups/invitationrequests.php
mod/groups/views/default/groups/membershiprequests.php

index c7039aa00f41a9ca4b331b09fce8fdaaeaab9898..4108de8d514090b774e56ef39155cf0ec71c6d0b 100644 (file)
@@ -19,7 +19,7 @@ if ($vars['guid']) {
        $delete_link = elgg_view('output/confirmlink', array(
                'href' => $delete_url,
                'text' => elgg_echo('delete'),
-               'class' => 'elgg-button-action disabled'
+               'class' => 'elgg-button-action elgg-state-disabled'
        ));
 }
 
index 416ec63751b15a37679b9b46b9debf44d2503f1f..9b7eeeaa2430edf52e156dfa5023a13217e246e7 100644 (file)
@@ -18,7 +18,7 @@ if ($entity) {
                                $warning = elgg_echo("groups:deletewarning");
                        ?>
                        <input type="hidden" name="group_guid" value="<?php echo $vars['entity']->getGUID(); ?>" />
-                       <input type="submit" class="elgg-button-action disabled" name="delete" value="<?php echo elgg_echo('groups:delete'); ?>" onclick="javascript:return confirm('<?php echo $warning; ?>')"/><?php
+                       <input type="submit" class="elgg-button-action elgg-state-disabled" name="delete" value="<?php echo elgg_echo('groups:delete'); ?>" onclick="javascript:return confirm('<?php echo $warning; ?>')"/><?php
                ?>
        </form>
 </div>
index f69482debd3a99a367eadf482d334df7c8c1c0bb..b6dcdfc22dd4a52c1ec532f43eba891a2d9ddcca 100644 (file)
@@ -20,7 +20,7 @@ if (!empty($vars['invitations']) && is_array($vars['invitations'])) {
                        <div class="entity-listing-info">
                        <a href="<?php echo $url; ?>" class="elgg-button-submit"><?php echo elgg_echo('accept'); ?></a>
                        <?php           
-                               echo str_replace('<a', '<a class="elgg-button-action disabled" ', elgg_view('output/confirmlink',array(
+                               echo str_replace('<a', '<a class="elgg-button-action elgg-state-disabled" ', elgg_view('output/confirmlink',array(
                                        'href' => "action/groups/killinvitation?user_guid={$user->getGUID()}&group_guid={$group->getGUID()}",
                                        'confirm' => elgg_echo('groups:invite:remove:check'),
                                        'text' => elgg_echo('delete'),
index 0ea6967af01bba4b2a6178e7a6b65ee79a268f03..43058e89fbbb1b2afb73c4a2815bbdf0081ea245 100644 (file)
@@ -21,7 +21,7 @@
                                        <div class="entity-listing-info">
                                        <a href="<?php echo $url; ?>" class="elgg-button-submit"><?php echo elgg_echo('accept'); ?></a>
                                        <?php   
-                                       echo str_replace('<a', '<a class="elgg-button-action disabled" ', elgg_view('output/confirmlink',array(
+                                       echo str_replace('<a', '<a class="elgg-button-action elgg-state-disabled" ', elgg_view('output/confirmlink',array(
                                                'href' => 'action/groups/killrequest?user_guid='.$request->guid.'&group_guid=' . $vars['entity']->guid,
                                                'confirm' => elgg_echo('groups:joinrequest:remove:check'),
                                                'text' => elgg_echo('delete'),