浏览代码

Merge pull request #3 from ShaneMcC/patch-2

Fix undefined function call when submitting a new quote.

Fixes issue #1
master
Chris Smith 11 年前
父节点
当前提交
602026fba7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      submit.php

+ 1
- 1
submit.php 查看文件

@@ -17,7 +17,7 @@
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
+  addAutoTags(mysql_insert_id());
21 21
 
22 22
   header('Location: '.BASE.'latest');
23 23
   exit;

正在加载...
取消
保存