diff --git a/application/models/UserGroup.php b/application/models/UserGroup.php index 388090ed41f..34b61200755 100644 --- a/application/models/UserGroup.php +++ b/application/models/UserGroup.php @@ -310,7 +310,7 @@ public function getColumns() 'name' => 'actions', 'type' => 'raw', 'value' => '', - 'htmlOptions' => array('class' => 'col-md-2 col-xs-1 text-right'), + 'htmlOptions' => array('class' => 'col-md-2 col-xs-1'), ), ); @@ -325,21 +325,21 @@ public function getButtons() // Edit user group if (Permission::model()->hasGlobalPermission('usergroups', 'update')) { $url = Yii::app()->createUrl("userGroup/edit/ugid/$this->ugid"); - $button = ' '; + $button = ' '; } // View users $url = Yii::app()->createUrl("userGroup/viewGroup/ugid/$this->ugid"); - $button .= ''; + $button .= ''; // Mail to user group // Which permission should be checked for this button to be available? $url = Yii::app()->createUrl("userGroup/mailToAllUsersInGroup/ugid/$this->ugid"); - $button .= ' '; + $button .= ' '; // Delete user group if (Permission::model()->hasGlobalPermission('usergroups', 'delete')) { - $button .= ' '; + $button .= ' '; } return $button;