Quote:
Originally Posted by Lynne
If you are worried about apostophes in something, then try something like this before the str_replace:
PHP Code:
$find= '$var[key]'; $find = str_replace("'", "&# 039;", $find);
(Note: there are actually no spaces in &# 039; , but it won't print in here unless I put a space in it.)
But, if you are doing something like what you are saying in your post, then no need for a str_replace, just do something like:
PHP Code:
$var['key'] = $var['key'] . $var2;
|
Thanks Lynne but it still doesn't seem to be working. Am I doing something wrong?
PHP Code:
if($noattach == 2) {
$find = ' <!-- attachments -->
<div style="padding:$stylevar[cellpadding]px">
<if condition="$show[' . "'" . 'thumbnailattachment' . "'" . ']">
<fieldset class="fieldset">
<legend>$vbphrase[attached_thumbnails]</legend>
<div style="padding:$stylevar[formspacer]px">
$post[thumbnailattachments]
</div>
</fieldset>
</if>
<if condition="$show[' . "'" . 'imageattachment' . "'" . ']">
<fieldset class="fieldset">
<legend>$vbphrase[attached_images]</legend>
<div style="padding:$stylevar[formspacer]px">
$post[imageattachments]
</div>
</fieldset>
</if>
<if condition="$show[' . "'" . 'imageattachmentlink' . "'" . ']">
<fieldset class="fieldset">
<legend>$vbphrase[attached_images]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
$post[imageattachmentlinks]
</table>
</fieldset>
</if>
<if condition="$show[' . "'" . 'otherattachment' . "'" . ']">
<fieldset class="fieldset">
<legend>$vbphrase[attached_files]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
$post[otherattachments]
</table>
</fieldset>
</if>
<if condition="$show[' . "'" . 'moderatedattachment' . "'" . ']">
<fieldset class="fieldset">
<legend>$vbphrase[attachments_pending_approval]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
$post[moderatedattachments]
</table>
</fieldset>
</if>
</div>
<!-- / attachments -->';
$find = str_replace("'", "&# 039;", $find); // without the space there
$replace = '';
$vbulletin->templatecache['postbit'] = str_replace($find, $replace, $vbulletin->templatecache['postbit']);
}