Skip to content

Commit

Permalink
Patched to compile.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 4, 2010
1 parent d2c82b6 commit cb45d4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Expand Up @@ -208,7 +208,7 @@
function save_tags(appid, tagstr)
{
// we only allow a-z, 0-9, and spaces. So URI encode the spaces.
tagstrurl = tagstr.replace(/ /g. '%20');
var tagstrurl = tagstr.replace(/ /g, '%20');
$.ajax({
type: 'GET',
url: 'savetags.php?appid=' + appid + '&tags=' + tagstrurl,
Expand Down

0 comments on commit cb45d4c

Please sign in to comment.