Browse Source

Fix javascript error on public pages

spaghetti 8 years ago
parent
commit
87a762bcb3
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      static/functions/script_start.js

+ 1
- 1
static/functions/script_start.js View File

@@ -362,7 +362,7 @@ $.fn.extend({
362 362
   }
363 363
 });
364 364
 
365
-if ($('meta[name=authkey]')) {
365
+if ($('meta[name=authkey]').raw()) {
366 366
   var authkey = $('meta[name=authkey]').raw().content;
367 367
   var userid = parseInt($('meta[name=userid]').raw().content);
368 368
 }

Loading…
Cancel
Save