Skip to content

Commit

Permalink
Removed backslash from Group Edit link
Browse files Browse the repository at this point in the history
  • Loading branch information
rydurham committed Sep 25, 2013
1 parent be23503 commit 6e5044a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/groups/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<tr>
<td>{{ $group->name }}</td>
<td>{{ (isset($group['permissions']['admin'])) ? '<i class="icon-ok"></i> Admin' : ''}} {{ (isset($group['permissions']['users'])) ? '<i class="icon-ok"></i> Users' : ''}}</td>
<td><button class="btn" onClick="location.href='{{ URL::to('groups') }}/{{ $group->id }}/edit/'">Edit</button>
<td><button class="btn" onClick="location.href='{{ URL::to('groups') }}/{{ $group->id }}/edit'">Edit</button>
<button class="btn action_confirm {{ ($group->id == 2) ? 'disabled' : '' }}" data-method="delete" href="{{ URL::to('groups') }}/{{ $group->id }}">Delete</button></td>
</tr>
@endforeach
Expand Down

0 comments on commit 6e5044a

Please sign in to comment.