Fix bad message output

This commit is contained in:
James Brooks
2015-06-15 20:30:35 +01:00
parent f867d22b96
commit 2669d4330e
6 changed files with 30 additions and 30 deletions

View File

@@ -76,7 +76,7 @@ class TeamController extends AbstractController
return Redirect::back()->withInput(Binput::except('password'))
->with('title', sprintf(
'%s - %s',
'%s %s',
trans('dashboard.notifications.whoops'),
trans('dashboard.team.add.failure')
))
@@ -89,7 +89,7 @@ class TeamController extends AbstractController
]);
$successMsg = sprintf(
'%s - %s',
'%s %s',
trans('dashboard.notifications.awesome'),
trans('dashboard.team.add.success')
);
@@ -124,7 +124,7 @@ class TeamController extends AbstractController
return Redirect::back()->withInput(Binput::except('password'))
->with('title', sprintf(
'%s - %s',
'%s %s',
trans('dashboard.notifications.whoops'),
trans('dashboard.team.edit.failure')
))
@@ -137,7 +137,7 @@ class TeamController extends AbstractController
]);
$successMsg = sprintf(
'%s - %s',
'%s %s',
trans('dashboard.notifications.awesome'),
trans('dashboard.team.edit.success')
);