From 3d9f5a59e1699018fb6d69d69289090c84be09ed Mon Sep 17 00:00:00 2001 From: Gabriel Jenik Date: Thu, 4 Aug 2022 11:22:32 -0300 Subject: [PATCH 1/2] Fixed issue #17745: Incomplete instructions to export response data to SPSS using Python (#2555) Co-authored-by: encuestabizdevgit --- application/views/admin/export/spss_view.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/views/admin/export/spss_view.php b/application/views/admin/export/spss_view.php index 4de9dfe8dea..97cbd7c3deb 100644 --- a/application/views/admin/export/spss_view.php +++ b/application/views/admin/export/spss_view.php @@ -103,7 +103,7 @@
  1. - +
From d052ccbdaedc1b394ff293260092cd6b2aad1f3d Mon Sep 17 00:00:00 2001 From: Olle Haerstedt Date: Fri, 5 Aug 2022 11:24:27 +0200 Subject: [PATCH 2/2] Fixed issue: Include bootstrap-rtl for admin themes --- application/models/AdminTheme.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/application/models/AdminTheme.php b/application/models/AdminTheme.php index dc3ef133c32..2ff258628d9 100644 --- a/application/models/AdminTheme.php +++ b/application/models/AdminTheme.php @@ -159,6 +159,10 @@ public function registerStylesAndScripts() App()->getClientScript()->registerPackage('ckeditor'); // App()->getClientScript()->registerPackage('ckeditoradditions'); // CKEDITOR in a global sope App()->getClientScript()->registerPackage('modaleditor'); + $dir = (getLanguageRTL(App()->getLanguage())) ? 'rtl' : 'ltr'; + if ($dir == "rtl") { + App()->getClientScript()->registerPackage('bootstrap-rtl'); + } } $aCssFiles = array();