PitchouneN64ngc
Thu 28th Apr '05, 12:27pm
In http://www.vbulletin.com/docs/html/templates_vbmenu , you can see this :
<script type="text/javascript">
vbmenu_register("MyMENU, true);
</script>
I think this is wrong, because the vbmenu_register() function have a open quote, and not the final quote.
The below code is good (i think :p):
<script type="text/javascript">
vbmenu_register("MyMENU", true);
</script>
<script type="text/javascript">
vbmenu_register("MyMENU, true);
</script>
I think this is wrong, because the vbmenu_register() function have a open quote, and not the final quote.
The below code is good (i think :p):
<script type="text/javascript">
vbmenu_register("MyMENU", true);
</script>