Skip to content

Commit

Permalink
fixing class
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisFrench committed Sep 2, 2015
1 parent a29330d commit 2a2decf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Users/Admin/Views/groups/checkboxes.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php if (!empty($groups)) { ?>

<div class="max-height-200 list-group-item">
<?php $current = \DscArrayHelper::getColumn( (array) $flash->old('groups'), 'id' ); ?>
<?php $current = \Dsc\ArrayHelper::getColumn( (array) $flash->old('groups'), 'id' ); ?>
<?php foreach ($groups as $one) { ?>
<div class="checkbox">
<label>
Expand Down
2 changes: 1 addition & 1 deletion src/Users/Admin/Views/users/list.php
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@
<?php if ($item->groups) { ?>
<div class="">
<label>Groups:</label>
<span class='label label-default'><?php echo implode("</span> <span class='label label-default'>", \DscArrayHelper::getColumn( (array) $item->groups, 'title' ) ); ?></span>
<span class='label label-default'><?php echo implode("</span> <span class='label label-default'>", \Dsc\ArrayHelper::getColumn( (array) $item->groups, 'title' ) ); ?></span>
</div>
<?php } ?>

Expand Down

0 comments on commit 2a2decf

Please sign in to comment.