1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-29 04:55:02 +03:00
This commit is contained in:
Mzhelskiy Maxim 2011-04-25 18:46:46 +00:00
parent ef2981c2e0
commit d48e163abb
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@
{literal}
<script>
function submitTags(sTag) {
window.location=DIR_WEB_ROOT+'/tag/'+sTag+'/';
window.location=DIR_WEB_ROOT+'/tag/'+encodeURIComponent(sTag)+'/';
return false;
}
</script>

View file

@ -3,7 +3,7 @@
{literal}
<script>
function submitTags(sTag) {
window.location=DIR_WEB_ROOT+'/tag/'+sTag+'/';
window.location=DIR_WEB_ROOT+'/tag/'+encodeURIComponent(sTag)+'/';
return false;
}
</script>