Skip to content

Commit

Permalink
Merge pull request #1 from EllisLab/bug/20
Browse files Browse the repository at this point in the history
Bug/20
  • Loading branch information
kevincupp committed Dec 3, 2018
2 parents 0ec2a93 + cbee096 commit 981499a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion changelogs/patch.rst
Expand Up @@ -22,7 +22,7 @@ Patch Release
- Fixed a bug where a supplied class was not added to "select" fields in the shared form view.
- Fixed a potential malformed query issue in the relationships_query hook.
- Fixed a potential PHP error (#21) when saving option-type Grid columns.

- Fixed a bug where the installer checks if the user theme directory is writable even when not installing the default theme.

EOF MARKER: This line helps prevent merge conflicts when things are
added on the bottoms of lists
2 changes: 1 addition & 1 deletion system/ee/installer/controllers/wizard.php
Expand Up @@ -961,7 +961,7 @@ public function template_path_writeable($radio)

public function themes_user_writable($radio)
{
if ( ! is_really_writable($this->root_theme_path.'user'))
if ( $radio == 'y' && ! is_really_writable($this->root_theme_path.'user'))
{
ee()->form_validation->set_message(
'themes_user_writable',
Expand Down

0 comments on commit 981499a

Please sign in to comment.