diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..6af90e153 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +# EditorConfig is awesome: http://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +indent_style = space +indent_size = 4 diff --git a/CHANGELOG.md b/CHANGELOG.md index ed00ab737..d4c27f17e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +* **Build 158** (2014-10-23) + - Fixes an issue where new Themes attached to a project were not being installed on update. + - Fixes issue where XDebug aborts the thread for maximum function count. + * **Build 155** (2014-10-16) - Back-end area can now be customized with colors and logo, via System > Customize Back-end. - Added twig filters `|trans` for `Lang::get(...)` and `|transchoice` for `Lang::choice(...)`. diff --git a/app/config/cms.php b/app/config/cms.php index 4d0138734..088b9de3d 100644 --- a/app/config/cms.php +++ b/app/config/cms.php @@ -26,7 +26,7 @@ return array( /* |-------------------------------------------------------------------------- - | Sepcific plugins to disable + | Specific plugins to disable |-------------------------------------------------------------------------- | | Specify plugin codes which will always be disabled in the application. diff --git a/bootstrap/start.php b/bootstrap/start.php index b26e4d01a..077053b6d 100644 --- a/bootstrap/start.php +++ b/bootstrap/start.php @@ -72,6 +72,13 @@ if (!isset($unitTesting) || !$unitTesting) { header('Pragma: no-cache'); } +/* +|-------------------------------------------------------------------------- +| Fix for XDebug aborting threads > 100 nested +|-------------------------------------------------------------------------- +*/ +ini_set('xdebug.max_nesting_level', 300); + /* |-------------------------------------------------------------------------- | Return The Application diff --git a/modules/backend/ServiceProvider.php b/modules/backend/ServiceProvider.php index 0c46c17f2..854f03119 100644 --- a/modules/backend/ServiceProvider.php +++ b/modules/backend/ServiceProvider.php @@ -66,7 +66,7 @@ class ServiceProvider extends ModuleServiceProvider $manager->registerMenuItems('October.Backend', [ 'dashboard' => [ 'label' => 'backend::lang.dashboard.menu_label', - 'icon' => 'icon-home', + 'icon' => 'icon-dashboard', 'url' => Backend::url('backend'), 'permissions' => ['backend.access_dashboard'], 'order' => 1 diff --git a/modules/backend/assets/js/october.stripeloadindicator.js b/modules/backend/assets/js/october.stripeloadindicator.js index ec91a9e9c..f41a74a23 100644 --- a/modules/backend/assets/js/october.stripeloadindicator.js +++ b/modules/backend/assets/js/october.stripeloadindicator.js @@ -57,17 +57,22 @@ // ============== $(document) - .on('ajaxPromise', '[data-stripe-load-indicator]', function() { + .on('ajaxPromise', '[data-stripe-load-indicator]', function(event) { + // Prevent this event from bubbling up to a non-related data-request + // element, for example a
tag wrapping a - +