1
While looking at my site HTML source code i noticed that many images have a link like
http://www.mysite.com/themes/mytheme//images/image.gifIn the theme.html file the url are retrieved with the help of the Smarty variable "xoops_imageurl".
I looked in the theme.php class and noticed that this variable is defined with a trailing slash.
With this kind of definition the theme.html would be written with a code like this:
<{$xoops_imageurl}>images/image.gif
instead of
<{$xoops_imageurl}>/images/image.gif
What do you think is the right way? However the images are loaded correctly even with the double slash