aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_attachments.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2008-01-06 17:00:09 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2008-01-06 17:00:09 +0000
commit12a9e001837da139a9ea07b8dd52019ee071d9bd (patch)
treeede34133cd24f2fb7231e06f3933507d1241c13d /phpBB/includes/acp/acp_attachments.php
parenta7984e660da4def80d28a4efeacb5ee861c4718c (diff)
downloadforums-12a9e001837da139a9ea07b8dd52019ee071d9bd.tar
forums-12a9e001837da139a9ea07b8dd52019ee071d9bd.tar.gz
forums-12a9e001837da139a9ea07b8dd52019ee071d9bd.tar.bz2
forums-12a9e001837da139a9ea07b8dd52019ee071d9bd.tar.xz
forums-12a9e001837da139a9ea07b8dd52019ee071d9bd.zip
- Do not split topic list for topics being promoted to announcements after been moved to another forum (Bug #18635)
- Allow editing usernames within database_update on username cleanup (Bug #18415) - Fixing wrong sync() calls if moving all posts by a member in ACP (Bug #18385) - Check entered imagemagick path for trailing slash (Bug #18205) - Use proper title on index for new/unread posts (Bug #13101) - patch provided by Pyramide - Allow calls to $user->set_cookie() define no cookie time for setting session cookies (Bug #18025) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8310 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_attachments.php')
-rw-r--r--phpBB/includes/acp/acp_attachments.php15
1 files changed, 13 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_attachments.php b/phpBB/includes/acp/acp_attachments.php
index 4ab47ec9d6..e2ee126479 100644
--- a/phpBB/includes/acp/acp_attachments.php
+++ b/phpBB/includes/acp/acp_attachments.php
@@ -184,7 +184,18 @@ class acp_attachments
}
// We strip eventually manual added convert program, we only want the patch
- $this->new_config['img_imagick'] = str_replace(array('convert', '.exe'), array('', ''), $this->new_config['img_imagick']);
+ if ($this->new_config['img_imagick'])
+ {
+ // Change path separator
+ $this->new_config['img_magick'] = str_replace('\\', '/', $this->new_config['img_magick']);
+ $this->new_config['img_imagick'] = str_replace(array('convert', '.exe'), array('', ''), $this->new_config['img_imagick']);
+
+ // Check for trailing slash
+ if (substr($this->new_config['img_magick'], -1) !== '/')
+ {
+ $this->new_config['img_magick'] .= '/';
+ }
+ }
$supported_types = get_supported_image_types();
@@ -1134,7 +1145,7 @@ class acp_attachments
foreach ($locations as $location)
{
// The path might not end properly, fudge it
- if (substr($location, -1, 1) !== '/')
+ if (substr($location, -1) !== '/')
{
$location .= '/';
}