Compare commits

..

5 Commits

Author SHA1 Message Date
snipe
885ab64c2e Merge branch 'master' of https://github.com/snipe/snipe-it 2022-02-13 12:01:59 -07:00
snipe
8624531f78 Bumped version
Signed-off-by: snipe <snipe@snipe.net>
2022-02-13 12:01:37 -07:00
snipe
db0c0e7908 Merge pull request #10665 from snipe/fixes/adds_gate_to_supplier_view
Adds gate to supplier
2022-02-13 10:56:55 -08:00
snipe
d77a47765e Adds gate to supplier
Signed-off-by: snipe <snipe@snipe.net>
2022-02-13 11:53:45 -07:00
snipe
05c0819776 Updated language string
Signed-off-by: snipe <snipe@snipe.net>
2022-02-11 15:55:42 -08:00
3 changed files with 7 additions and 6 deletions

View File

@@ -184,6 +184,7 @@ class SuppliersController extends Controller
*/
public function show($supplierId = null)
{
$this->authorize('view', Supplier::class);
$supplier = Supplier::find($supplierId);
if (isset($supplier->id)) {

View File

@@ -1,10 +1,10 @@
<?php
return array (
'app_version' => 'v5.3.9',
'full_app_version' => 'v5.3.9 - build 6673-gf5ffda805',
'build_version' => '6673',
'app_version' => 'v5.3.10',
'full_app_version' => 'v5.3.10 - build 6684-g05c081977',
'build_version' => '6684',
'prerelease_version' => '',
'hash_version' => 'gf5ffda805',
'full_hash' => 'v5.3.9-52-gf5ffda805',
'hash_version' => 'g05c081977',
'full_hash' => 'v5.3.10-1-g05c081977',
'branch' => 'master',
);

View File

@@ -1,6 +1,6 @@
<?php
return [
'sent' => 'Your password link has been sent!',
'sent' => 'Success: If that email address exists in our system, a password recovery email has been sent.',
'user' => 'No matching active user found with that email.',
];