summaryrefslogtreecommitdiff
path: root/program/steps/settings/func.inc
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-06-30 10:30:06 +0200
committerAleksander Machniak <alec@alec.pl>2013-06-30 10:30:06 +0200
commitb7addfc77cc3116d2015c04868f8ac741f177390 (patch)
treecb8f6a0f898de6e898364b237fe72f3f6d3898ec /program/steps/settings/func.inc
parentd4a2ea1d87880401b4bdd883343670961ba7f080 (diff)
Use absolute paths in is_dir() checks to prevent open_basedir related warnings
Diffstat (limited to 'program/steps/settings/func.inc')
-rw-r--r--program/steps/settings/func.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc
index 3ee098ca8..dbc9b3ce2 100644
--- a/program/steps/settings/func.inc
+++ b/program/steps/settings/func.inc
@@ -1170,7 +1170,7 @@ function rcmail_user_prefs($current = null)
function rcmail_get_skins()
{
- $path = 'skins';
+ $path = RCUBE_INSTALL_PATH . 'skins';
$skins = array();
$dir = opendir($path);