From 28349b69a8e591ddd2472bd53a3029de96444696 Mon Sep 17 00:00:00 2001 From: Bot Date: Sat, 11 Aug 2018 22:16:57 +0200 Subject: Changed JS to use single quotes instead of double quotes --- public/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'public/index.php') diff --git a/public/index.php b/public/index.php index adf22e71..0528f531 100755 --- a/public/index.php +++ b/public/index.php @@ -247,6 +247,6 @@ echo view(__DIR__ . '/../templates/layout.html', [ 'header_toolbar' => header_toolbar(), 'faq_url' => config('faq_url'), 'contact_email' => config('contact_email'), - 'locale' => locale(), + 'locale' => locale_short(), 'event_info' => EventConfig_info($event_config) . '
' ]); -- cgit v1.2.3-70-g09d2 From d9ebc2daec36153bc5539c10f3da9081079e3a87 Mon Sep 17 00:00:00 2001 From: msquare Date: Wed, 21 Feb 2018 16:10:13 +0100 Subject: remove json export all shifts --- public/index.php | 5 ----- 1 file changed, 5 deletions(-) (limited to 'public/index.php') diff --git a/public/index.php b/public/index.php index 0528f531..2b480723 100755 --- a/public/index.php +++ b/public/index.php @@ -17,7 +17,6 @@ $free_pages = [ 'shift_entries', 'shifts', 'shifts_json_export', - 'shifts_json_export_all', 'stats', 'users', 'user_driver_licenses', @@ -67,10 +66,6 @@ if ( require_once realpath(__DIR__ . '/../includes/controller/shifts_controller.php'); shifts_json_export_controller(); break; - case 'shifts_json_export_all': - require_once realpath(__DIR__ . '/../includes/controller/shifts_controller.php'); - shifts_json_export_all_controller(); - break; case 'stats': require_once realpath(__DIR__ . '/../includes/pages/guest_stats.php'); guest_stats(); -- cgit v1.2.3-70-g09d2