diff options
Diffstat (limited to 'series/core/trunk/includes/instadisc.php')
-rw-r--r-- | series/core/trunk/includes/instadisc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/series/core/trunk/includes/instadisc.php b/series/core/trunk/includes/instadisc.php index 6cf4657..dd879c6 100644 --- a/series/core/trunk/includes/instadisc.php +++ b/series/core/trunk/includes/instadisc.php | |||
@@ -65,7 +65,7 @@ function instaDisc_changePassword($password) | |||
65 | 65 | ||
66 | function instaDisc_addSubscription($id, $title, $url, $category, $password = '') | 66 | function instaDisc_addSubscription($id, $title, $url, $category, $password = '') |
67 | { | 67 | { |
68 | $inssub = "INSERT INTO subscriptions (identity, title, url, category, password) VALUES (\"" . mysql_real_escape_string($id) . "\",\"" . mysql_real_escape_string($title) . "\",\"" . mysql_real_escape_string($url) . "\",\"" . mysql_real_escape_string($category) . "\",\"" . mysql_real_escape_string(($password == '' ? '' : md5($password))) . "\")"; | 68 | $inssub = "INSERT INTO subscriptions (identity, title, url, category, password, personal) VALUES (\"" . mysql_real_escape_string($id) . "\",\"" . mysql_real_escape_string($title) . "\",\"" . mysql_real_escape_string($url) . "\",\"" . mysql_real_escape_string($category) . "\",\"" . mysql_real_escape_string(($password == '' ? '' : md5($password))) . "\",\"false\")"; |
69 | $inssub2 = mysql_query($inssub); | 69 | $inssub2 = mysql_query($inssub); |
70 | } | 70 | } |
71 | 71 | ||