git-svn-id: http://xe-core.googlecode.com/svn/trunk@753 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-29 02:55:03 +00:00
parent d332f6197f
commit 099f5ccd56
12 changed files with 24 additions and 24 deletions

View file

@ -670,10 +670,10 @@
$image_mark_file = sprintf('./files/attach/image_mark/%s%d.gif', getNumberingPath($member_srl), $member_srl);
if(file_exists($image_mark_file)) {
list($width, $height, $type, $attrs) = getimagesize($image_mark_file);
$text = sprintf('<span style="background:url(%s) no-repeat left;padding-left:%dpx;">%s</span>', $image_mark_file, $width+2, $text);
$buff = sprintf('<span style="background:url(%s) no-repeat left;padding-left:%dpx;">%s</span>', $image_mark_file, $width+2, $text);
}
$GLOBALS['_transImageNameList'][$member_srl] = $text;
$GLOBALS['_transImageNameList'][$member_srl] = str_replace($matches[4], $buff, $matches[0]);
}
return $GLOBALS['_transImageNameList'][$member_srl];