Can you tell what brings escaped to the lead sentence in header.js?
- I have no problems with header.css template.
--------------- Added [DATE]1309718238[/DATE] at [TIME]1309718238[/TIME] ---------------
PHP Code:
require_once(DIR . '/includes/template_curly_defs.php');
class vB_TemplateParser_CurlyJsinline extends vB_TemplateParser_Curly
{
public static function validate(vB_Node $main_node, vB_TemplateParser $parser)
{
$errors = array();
if (!array_key_exists(0, $main_node->attributes))
{
$errors[] = 'no_variable_specified';
}
return $errors;
}
public static function compile(vB_Node $main_node, vB_TemplateParser $parser)
{
global $vbulletin;
$output = '';
foreach ($main_node->attributes AS $template)
{
if ( strripos($template, '.js') )
{
if ($vbulletin->options['addtemplatename'])
{
$output .= '"\n/* TEMPLATE: '.$template.' */\n".';
}
$output .= 'vB_Template::fetch_template_raw("'.$template.'").';
}
}
return '\'\';$final_rendered .= '.$output.'""';
}
}
class vB_TemplateParser_CurlyCssinline extends vB_TemplateParser_Curly
{
public static function validate(vB_Node $main_node, vB_TemplateParser $parser)
{
$errors = array();
if (!array_key_exists(0, $main_node->attributes))
{
$errors[] = 'no_variable_specified';
}
return $errors;
}
public static function compile(vB_Node $main_node, vB_TemplateParser $parser)
{
global $vbulletin;
$output = '';
foreach ($main_node->attributes AS $template)
{
if ( strripos($template, '.css') )
{
if ($vbulletin->options['addtemplatename'])
{
$output .= '"\n/* TEMPLATE: '.$template.' */\n".';
}
$output .= 'vB_Template::fetch_template_raw("'.$template.'").';
}
}
return '\'\';$final_rendered .= preg_replace(\'#@charset .*#i\', \'\', '.$output.'"")';
}
}
--------------- Added [DATE]1309718689[/DATE] at [TIME]1309718689[/TIME] ---------------
Tempate: header.css
Code:
#quick7{background:url("image.png") no-repeat}
Tempate: header.js
Tempate: vbcms_page
Code:
...
<style type="text/css">/*<![CDATA[*/ <!-- {vb:cssinline header.css} --> /*]]>*/</style>
</head>
<body>
...
<script type="text/javascript">/*<![CDATA[*/ <!--
{vb:jsinline header.js}
// --> /*]]>*/</script>
</body>
</html>