Skip to content

Commit

Permalink
Merge branch 'character-private-families' of https://github.com/owlch…
Browse files Browse the repository at this point in the history
…ester/kanka into character-private-families
  • Loading branch information
spitfire305 committed Jul 15, 2024
2 parents 8c0fce7 + 1fea872 commit 9e86037
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/Http/Controllers/Settings/SubscriptionController.php
Original file line number Diff line number Diff line change
Expand Up @@ -198,11 +198,11 @@ public function subscribe(UserSubscribeStore $request, Tier $tier)
return redirect()
->route('settings.subscription')
->with('error_raw', __('subscription.errors.invalid_currency', [
'old' => strtoupper($currencies[1][0]),
'new' => strtoupper($currencies[1][1]),
'old' => mb_strtoupper($currencies[1][0]),
'new' => mb_strtoupper($currencies[1][1]),
'email' => '<a href="mailto:' . config('app.email') . '">' . config('app.email') . '</a>'
]))
;
;
}
// Error? json
return response()->json([
Expand Down
1 change: 0 additions & 1 deletion app/Policies/CampaignPolicy.php
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,6 @@ public function members(?User $user, Campaign $campaign): bool

/**
* Permission to view the campaign submissions
* @return bool
*/
public function submissions(?User $user): bool
{
Expand Down

0 comments on commit 9e86037

Please sign in to comment.