From e48f8945b32ab5b67f1cdeb53a37d3d196e31e4d Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Fri, 20 May 2016 05:19:01 -0400
Subject: [PATCH] Fix bug where message list columns could be in wrong order after column drag-n-drop and list sorting

---
 bin/updatecss.sh |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/updatecss.sh b/bin/updatecss.sh
index c477171..6ecfeac 100755
--- a/bin/updatecss.sh
+++ b/bin/updatecss.sh
@@ -18,7 +18,7 @@
  +-----------------------------------------------------------------------+
 */
 
-define('INSTALL_PATH', realpath(dirname(__FILE__) . '/..') . '/' );
+define('INSTALL_PATH', realpath(__DIR__ . '/..') . '/' );
 
 require_once INSTALL_PATH . 'program/include/clisetup.php';
 
@@ -28,7 +28,7 @@
 ));
 
 if (empty($opts['dir'])) {
-    print "Skin directory not specified (--dir). Using skins/ and plugins/skins/.\n";
+    print "Skin directory not specified (--dir). Using skins/ and plugins/*/skins/.\n";
 
     $dir     = INSTALL_PATH . 'skins';
     $dir_p   = INSTALL_PATH . 'plugins';

--
Gitblit v1.9.1