On Sun, Mar 1, 2009 at 6:56 PM, Hans <[email protected]> wrote:
>
> I just tested with the default skin, and the issue is there as well:
>
> code.snippets has a Search var, and putting $$search into code.skin
> will not render the search form, but show the raw markup text.
Was one of the things I was wrangling with endlessly... Change
markups.php ~87-93 to:
function BOLTMsnippets($var, $page='') {
$out = BOLTdomarkup(BOLTsnippets($var, $page, $skin));
if (strpos($out, "\n") === false) {
if (substr($out, 0, 3) == '<p>' && substr($out, -4) == '</p>')
$out
= substr($out, 3, -4);
}
return BOLTescape($out);
}
No guarantee it won't break something else... :)
> Another thing:
> in code.skin the favicon path needs adjusting to:
>
> <link rel='shortcut icon' href='$$img/favicon.ico' />
Thanks, will fix for the next release.
Cheers,
Dan
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"BoltWire" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/boltwire?hl=en
-~----------~----~----~----~------~----~------~--~---