diff options
author | thomascube <thomas@roundcube.net> | 2012-03-03 18:36:42 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-03-03 18:36:42 +0000 |
commit | 54d074613fede481758049c445c502acfe0ebe6a (patch) | |
tree | 318ea9e16caaf9906e2fad472ce4a7ee4aa77bb2 | |
parent | 18a28ae3f8fcaf78d5304c2d7dfce3991791239e (diff) |
Copy all skins in installto script (#1488376)
-rw-r--r-- | CHANGELOG | 4 | ||||
-rwxr-xr-x | bin/installto.sh | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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/bin/installto.sh b/bin/installto.sh index f3ab2ad6b..eb43b99d4 100755 --- a/bin/installto.sh +++ b/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; |