Compare commits

...

3 Commits

Author SHA1 Message Date
snipe b07a254e60 Bumped version 2019-05-29 15:51:54 -07:00
snipe 087cdd859e Fixed #7092 - handle weird port forwarding/port numbers for baseUrl 2019-05-29 14:57:58 -07:00
snipe 829d44bd27 Fixed #7098 - updated backup config for deleteFile() method 2019-05-29 14:47:55 -07:00
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -1012,7 +1012,7 @@ class SettingsController extends Controller
if (!config('app.lock_passwords')) {
$path = storage_path().'/app/'.config('laravel-backup.backup.name');
$path = storage_path().'/app/'.config('backup.backup.name');
$file = $path.'/'.$filename;
if (file_exists($file)) {
unlink($file);
+5 -5
View File
@@ -1,10 +1,10 @@
<?php
return array (
'app_version' => 'v4.7.2',
'full_app_version' => 'v4.7.2 - build 4037',
'build_version' => '4037',
'app_version' => 'v4.7.3',
'full_app_version' => 'v4.7.3 - build 4098-g087cdd859',
'build_version' => '4098',
'prerelease_version' => '',
'hash_version' => '',
'full_hash' => 'v4.7.2',
'hash_version' => 'g087cdd859',
'full_hash' => 'v4.7.3-2-g087cdd859',
'branch' => 'master',
);
+1 -1
View File
@@ -25,7 +25,7 @@
<link rel="shortcut icon" type="image/ico" href="{{ url(asset('favicon.ico')) }}">
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta name="baseUrl" content="{{ config('app.url') }}/">
<meta name="baseUrl" content="{{ url('/') }}/">
<script nonce="{{ csrf_token() }}">
window.Laravel = { csrfToken: '{{ csrf_token() }}' };