From 88122c14d28a1ff5caf9aa7ff92aa1382b6cd02b Mon Sep 17 00:00:00 2001 From: Tripp Hill Date: Mon, 1 Oct 2018 18:40:53 -0400 Subject: [PATCH 1/4] Fixed link to requirements page, 404'd before --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ecd2604..4cc429d9 100755 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ The latest documentation, with installation instructions is available - Database: - MySQL 5.5+ (or MySQL variant, including MariaDB and Percona) -[View more details on requirements](http://docs.phpvms.net/basics/requirements) +[View more details on requirements](http://docs.phpvms.net/setup/requirements) ## Installer From 48b14091c497bc0eed9527601d2e793dc059eb18 Mon Sep 17 00:00:00 2001 From: Tripp Hill Date: Mon, 1 Oct 2018 18:42:38 -0400 Subject: [PATCH 2/4] Fixed link to installation details page, was 404'd --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4cc429d9..c3911566 100755 --- a/README.md +++ b/README.md @@ -32,4 +32,4 @@ The latest documentation, with installation instructions is available 1. Upload to your server 2. Visit the site, and follow the link to the installer -[View installation details](http://docs.phpvms.net/basics/installation) +[View installation details](http://docs.phpvms.net/setup/installation) From e319f8eba4fc1cf037e7d487aba3da255af2e3ad Mon Sep 17 00:00:00 2001 From: arv187 Date: Tue, 2 Oct 2018 20:25:18 +0200 Subject: [PATCH 3/4] More acceptable translation to opt-in (es) --- resources/lang/es/profile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/es/profile.php b/resources/lang/es/profile.php index 7c899cbd..f207b183 100644 --- a/resources/lang/es/profile.php +++ b/resources/lang/es/profile.php @@ -14,6 +14,6 @@ return [ 'updateprofile' => 'Actualizar perfil', 'editprofile' => 'Editar perfil', 'edityourprofile' => 'Editar tu perfil', - 'opt-in' => 'Optar En', + 'opt-in' => 'Inscribirse', 'opt-in-descrip' => 'Sí, incluirme en correos electrónicos no administrativos', ]; From cd327502d9600262ea20e8dcaf73a702d8ef2bd3 Mon Sep 17 00:00:00 2001 From: Nabeel Shahzad Date: Mon, 8 Oct 2018 09:01:35 -0500 Subject: [PATCH 4/4] API: Call submit() for the PIREP --- app/Http/Controllers/Api/PirepController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Http/Controllers/Api/PirepController.php b/app/Http/Controllers/Api/PirepController.php index 8fa7e404..096b5998 100644 --- a/app/Http/Controllers/Api/PirepController.php +++ b/app/Http/Controllers/Api/PirepController.php @@ -366,6 +366,8 @@ class PirepController extends Controller $this->pirepSvc->saveRoute($pirep); } + $this->pirepSvc->submit($pirep); + return new PirepResource($pirep); }