Log in

View Full Version : template string replacement not working


h2ojunkie
11-22-2008, 07:08 AM
For some reason I can't seem to get this string replacement to work, and I thing it has something to do with the $session part of the string

This doesn't work:
$vbulletin->templatecache['threadbit'] = str_replace('showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]','SOME REPLACMENT URL',$vbulletin->templatecache['threadbit']);

But this works:
$vbulletin->templatecache['threadbit'] = str_replace('showthread.php?','SOME REPLACMENT URL',$vbulletin->templatecache['threadbit']);

And this works:
$vbulletin->templatecache['threadbit'] = str_replace('t=$thread[threadid]$thread[highlight]','SOME REPLACMENT URL',$vbulletin->templatecache['threadbit']);

Any idea why the str_replace doesn't work if $session is in the searched for text?

Thanks

Dismounted
11-22-2008, 07:57 AM
<a href="https://vborg.vbsupport.ru/showthread.php?t=151332" target="_blank">[How-To] Plugins for Template Edits (Adv. Version)</a>

h2ojunkie
11-23-2008, 01:59 AM
That was a great article. I don't know how I missed it when searching.

Everything I needed to solve the problem was right there.

Thanks