diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-08-14 23:50:35 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-08-14 23:50:35 +0000 |
commit | 9041b88501fc87103aec045ac059a0451946f3d6 (patch) | |
tree | 3b2c9e6a471b714c220a8655cb0e6bd56de47b32 /phpBB/adm/admin_styles.php | |
parent | dbd512138e249884b6adbda7caa5731498d8802f (diff) | |
download | forums-9041b88501fc87103aec045ac059a0451946f3d6.tar forums-9041b88501fc87103aec045ac059a0451946f3d6.tar.gz forums-9041b88501fc87103aec045ac059a0451946f3d6.tar.bz2 forums-9041b88501fc87103aec045ac059a0451946f3d6.tar.xz forums-9041b88501fc87103aec045ac059a0451946f3d6.zip |
Minor oopsie, forgot border="0" in image url ... probably make this defineable
git-svn-id: file:///svn/phpbb/trunk@4406 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/admin_styles.php')
-rw-r--r-- | phpBB/adm/admin_styles.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/adm/admin_styles.php b/phpBB/adm/admin_styles.php index 2580c5d5ba..8fb0cf8d5e 100644 --- a/phpBB/adm/admin_styles.php +++ b/phpBB/adm/admin_styles.php @@ -1256,7 +1256,7 @@ function csspreview() $imgheight = " height=\"$imgheight\""; } - $imgpath = '"styles/' . $imageset_path . '/imageset/' . preg_replace('#^(.*?)/(.*?)$#', '{LANG}/\2', $imgpath) . '"' . $imgwidth . $imgheight; + $imgpath = '"styles/' . $imageset_path . '/imageset/' . preg_replace('#^(.*?)/(.*?)$#', '{LANG}/\2', $imgpath) . '" border="0"' . $imgwidth . $imgheight; $sql = 'UPDATE ' . STYLES_IMAGE_TABLE . " SET $imgname = '$imgpath' |