diff options
| -rw-r--r-- | roundcubemail/CHANGELOG | 4 | ||||
| -rwxr-xr-x | roundcubemail/bin/installto.sh | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG index d73bde019..78c1f78ed 100644 --- a/roundcubemail/CHANGELOG +++ b/roundcubemail/CHANGELOG @@ -1,7 +1,11 @@ CHANGELOG Roundcube Webmail =========================== +- Copy all skins in installto script (#1488376) - Prevent from folder selection on virtual folder collapsing (#1488346) + +RELEASE 0.8-beta +---------------- - Upgraded to jQuery 1.7.1 (#1488337) and jQuery UI 1.8.18 - Add Russian to the spellchecker languages list (#1488135) - Remember custom skin selection after logout (#1488355) diff --git a/roundcubemail/bin/installto.sh b/roundcubemail/bin/installto.sh index f3ab2ad6b..eb43b99d4 100755 --- a/roundcubemail/bin/installto.sh +++ b/roundcubemail/bin/installto.sh @@ -47,7 +47,7 @@ $input = trim(fgets(STDIN)); if (strtolower($input) == 'y') { $err = false; echo "Copying files to target location..."; - foreach (array('program','installer','bin','SQL','plugins','skins/default') as $dir) { + foreach (array('program','installer','bin','SQL','plugins','skins') as $dir) { if (!system("rsync -avC " . INSTALL_PATH . "$dir/* $target_dir/$dir/")) { $err = true; break; |
