summaryrefslogtreecommitdiff
path: root/roundcubemail
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-03-03 18:36:42 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-03-03 18:36:42 +0000
commitfc1b6ff6c567675c0200cbc835380b5b87a2aa7d (patch)
tree87e8b566ac3223719d74067f84569f55fd2a488a /roundcubemail
parenta07894715d3ba5bec8671d8b5dfee1fc340d740e (diff)
Copy all skins in installto script (#1488376)
git-svn-id: https://svn.roundcube.net/trunk@5957 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail')
-rw-r--r--roundcubemail/CHANGELOG4
-rwxr-xr-xroundcubemail/bin/installto.sh2
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;