Browse Source

Merge a8b9190709 into 1c947960d2

pull/2/merge
Shane Mc Cormack 11 years ago
parent
commit
fb03a48d95
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      submit.php

+ 2
- 1
submit.php View File

@@ -17,7 +17,8 @@
17 17
   $sql = 'INSERT INTO quotes (quote_quote, quote_time, user_id) VALUES (\''.m($_POST['quote']).'\', '.time().', '.$_SESSION['uid'].')';
18 18
   mysql_query($sql);
19 19
 
20
-  doAutoTags(mysql_insert_id());
20
+  // Broken, see issue #1 - https://github.com/csmith/Quote-DB/issues/1
21
+  // doAutoTags(mysql_insert_id());
21 22
 
22 23
   header('Location: '.BASE.'latest');
23 24
   exit;

Loading…
Cancel
Save