@mvlcek: get_site_url(); is returning a slash on the end, so by example ...
<script type="text/javascript" src="<?php get_site_url(); ?>/plugins/i18n_gallery/js/jquery.prettyPhoto.js"></script>
... results in ...
<script type="text/javascript" src="http://www.domain.nl//plugins/i18n_gallery/js/jquery.prettyPhoto.js"></script>
Note the two slashes before 'plugins'.
Of course I can remove the extra slash in the code but I assume that this is intended? Or do I have some settings wrong?
~~edit~
But let me be clear ... this is a minor thing ... everthing works! Great work done!
<script type="text/javascript" src="<?php get_site_url(); ?>/plugins/i18n_gallery/js/jquery.prettyPhoto.js"></script>
... results in ...
<script type="text/javascript" src="http://www.domain.nl//plugins/i18n_gallery/js/jquery.prettyPhoto.js"></script>
Note the two slashes before 'plugins'.
Of course I can remove the extra slash in the code but I assume that this is intended? Or do I have some settings wrong?
~~edit~
But let me be clear ... this is a minor thing ... everthing works! Great work done!