diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-08-06 15:23:37 +0000 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-08-06 15:23:37 +0000 |
commit | 0c7e773693e2937ac16595ef551cecfa73bc1ec2 (patch) | |
tree | 1332ebe5f11807f1a6b68e68ff5a5e7a5a7ddcc7 | |
parent | b76f083be24ab5a1408bf550c78a46e7f4f59d75 (diff) | |
download | instadisc-0c7e773693e2937ac16595ef551cecfa73bc1ec2.tar.gz instadisc-0c7e773693e2937ac16595ef551cecfa73bc1ec2.tar.bz2 instadisc-0c7e773693e2937ac16595ef551cecfa73bc1ec2.zip |
Update: Fixed HTML entities in phpBB3
Also, 100th COMMIT! YAY! PARTY TIME EVERYONE! YAY!
-rw-r--r-- | update/plugin/phpBB3/trunk/root/includes/functions_instadisc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update/plugin/phpBB3/trunk/root/includes/functions_instadisc.php b/update/plugin/phpBB3/trunk/root/includes/functions_instadisc.php index 2858748..df7c203 100644 --- a/update/plugin/phpBB3/trunk/root/includes/functions_instadisc.php +++ b/update/plugin/phpBB3/trunk/root/includes/functions_instadisc.php | |||
@@ -33,7 +33,7 @@ function sendItem($title, $userID, $url, $fourm) | |||
33 | $db->sql_freeresult($getuser2); | 33 | $db->sql_freeresult($getuser2); |
34 | $author = $getuser3['username']; | 34 | $author = $getuser3['username']; |
35 | 35 | ||
36 | $url = str_replace($phpbb_root_path, generate_board_url() . '/', $url); | 36 | $url = html_entity_decode(str_replace($phpbb_root_path, generate_board_url() . '/', $url)); |
37 | 37 | ||
38 | $da = array('forum_id' => $fourm); | 38 | $da = array('forum_id' => $fourm); |
39 | $getfourm = "SELECT * FROM " . FORUMS_TABLE . " WHERE " . $db->sql_build_array('SELECT', $da); | 39 | $getfourm = "SELECT * FROM " . FORUMS_TABLE . " WHERE " . $db->sql_build_array('SELECT', $da); |