diff --git a/README.md b/README.md index 9bbd7c220..73502fc18 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Would you require more help please open and issue here on [gitHub today](https:/ + *Version*: 2.1.10 + *Copyright*: Copyright (C) 2015. All Rights Reserved + *License*: GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html -+ *Line count*: **82827** ++ *Line count*: **82957** + *File count*: **503** + *Folder count*: **99** diff --git a/admin/helpers/compiler/a_Get.php b/admin/helpers/compiler/a_Get.php index 760714cbe..86a0c27d4 100644 --- a/admin/helpers/compiler/a_Get.php +++ b/admin/helpers/compiler/a_Get.php @@ -1074,12 +1074,20 @@ class Get // add_css_view if ($view->add_css_view == 1) { + if (!isset($this->customScriptBuilder['css_view'][$name_single])) + { + $this->customScriptBuilder['css_view'][$name_single] = ''; + } $this->customScriptBuilder['css_view'][$name_single] .= base64_decode($view->css_view); unset($view->css_view); } // add_css_views if ($view->add_css_views == 1) { + if (!isset($this->customScriptBuilder['css_views'][$name_single])) + { + $this->customScriptBuilder['css_views'][$name_single] = ''; + } $this->customScriptBuilder['css_views'][$name_list] .= base64_decode($view->css_views); unset($view->css_views); } diff --git a/admin/helpers/compiler/e_Interpretation.php b/admin/helpers/compiler/e_Interpretation.php index 8f708b878..bb9e246d7 100644 --- a/admin/helpers/compiler/e_Interpretation.php +++ b/admin/helpers/compiler/e_Interpretation.php @@ -5838,7 +5838,8 @@ class Interpretation extends Fields public function setFadeInEfect(&$view) { - if ($view->add_fadein == 1) + // check if we should load the fade in affect + if ($view['settings']->add_fadein == 1) { // set view name $fadein[] = " +