Skip to content

Commit 3687af3

Browse files
authored
Merge pull request #377 from dbarzin/dev
Dev
2 parents f7a1917 + 3bc1011 commit 3687af3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/Http/Controllers/MeasureController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -462,8 +462,8 @@ public function plan(Request $request)
462462

463463
// get all attributes
464464
$values = [];
465-
$attributes = DB::table('measures')
466-
->select('attributes')
465+
$attributes = DB::table('attributes')
466+
->select('values')
467467
->get();
468468
foreach ($attributes as $attribute) {
469469
foreach (explode(' ', $attribute->attributes) as $value) {

resources/views/groups/show.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
</form>
158158
&nbsp;
159159
@endif
160-
<a class="button" href="/users">
160+
<a class="button" href="/groups">
161161
<span class="mif-cancel"></span>
162162
&nbsp;
163163
{{ trans('common.cancel') }}

0 commit comments

Comments
 (0)