diff options
| author | Nils Adermann <naderman@naderman.de> | 2006-05-21 01:24:56 +0000 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2006-05-21 01:24:56 +0000 |
| commit | 80168f926054db88990fea4f0b5e75b15b26dc38 (patch) | |
| tree | 6d71bf7c95b4ccd8086040fd378ff95a6e72bc95 /phpBB/includes | |
| parent | 205c3245a5b0ecf7cb6641569e3decaa4423249b (diff) | |
| download | forums-80168f926054db88990fea4f0b5e75b15b26dc38.tar forums-80168f926054db88990fea4f0b5e75b15b26dc38.tar.gz forums-80168f926054db88990fea4f0b5e75b15b26dc38.tar.bz2 forums-80168f926054db88990fea4f0b5e75b15b26dc38.tar.xz forums-80168f926054db88990fea4f0b5e75b15b26dc38.zip | |
- fix some bugs in the theme editor
git-svn-id: file:///svn/phpbb/trunk@5955 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
| -rw-r--r-- | phpBB/includes/acp/acp_styles.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_styles.php b/phpBB/includes/acp/acp_styles.php index 1468555ded..4145b1f479 100644 --- a/phpBB/includes/acp/acp_styles.php +++ b/phpBB/includes/acp/acp_styles.php @@ -939,7 +939,7 @@ pagination_sep = \'{PAGINATION_SEP}\' case 'images': $value = str_replace('..', '.', request_var($var, '')); - if (!file_exists($value)) + if (!file_exists("{$phpbb_root_path}styles/{$theme_info['theme_path']}/theme/" . $value)) { $value = ''; } |
