diff options
Diffstat (limited to 'submit.php')
-rw-r--r-- | submit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/submit.php b/submit.php index dac2bc182..5d7711a41 100644 --- a/submit.php +++ b/submit.php @@ -130,7 +130,7 @@ function submit_submit($subject, $abstract, $article, $category) { global $user, $theme; // Add log entry: - watchdog("story", "added new story with subject `$subject'"); + watchdog("story", "story: added '$subject'"); // Add submission to SQL table: db_query("INSERT INTO stories (author, subject, abstract, article, category, timestamp) VALUES ('$user->id', '". check_input($subject) ."', '". check_input($abstract) ."', '". check_input($article) ."', '". check_input($category) ."', '". time() ."')"); |