vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   Problem adding javascript to template (https://vborg.vbsupport.ru/showthread.php?t=228283)

derfelix 11-18-2009 09:39 AM

Problem adding javascript to template
 
Hello

Might be a bug (but couldnt find the bug reporting stuff on vbulletin.com)
But probably its just stupid me.. that cant write javascript...

I want to edit a template (any template) and add a simple javascript:

HTML Code:

<script type="text/javascript">
function checkme()
{
  var test='test';
}
</script>

And it gives me
Quote:

Parse error: parse error in C:\apache\apache2\htdocs\xxx\forums\includes\admin functions_template.php(4516) : eval()'d code on line xx
when i remove the var test="test"; line, the template saves perfectly..
if i add javascript other than var x = ''; or something.. it works...
I could write var test="test"; outside of the function... that works... but no point in having a function then...



i found the parse error in adminfunctions_template.php on line 4516 it does
eval($template)
so i added ... print $template;exit;
and on that line it does:
function checkme()
' . htmlspecialchars($test=test;) . '
which gives the parse error...

Now my question. Is there a simple way to add my function?

thanks for any help

Felix


[EDIT]
Found a workaround, not very elegant.. but works for me... maybe it helps someone else..
HTML Code:

<script type="text/javascript">
function checkme()
{
  var test='test';
}
</script>

Gives a template parse error...
but:
HTML Code:

<script type="text/javascript">
  var test='';
function checkme()
{
  test='test';
}
</script>

[/EDIT]
works...
seems that the parse error is triggered by the var inside a function... strange..

Paul M 11-18-2009 11:15 AM

It is a known bug in the template parser.

derfelix 11-18-2009 12:58 PM

thanx
for your reply
Felix

Lionel 11-21-2009 04:24 PM

surround the javascript with

Quote:

<vb:literal>

your script

</vb:literal>

derfelix 11-21-2009 05:00 PM

thx
works!


All times are GMT. The time now is 12:00 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01007 seconds
  • Memory Usage 1,719KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_html_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete