diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-08-16 17:52:30 +0000 |
|---|---|---|
| committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-08-16 17:52:30 +0000 |
| commit | 2d998db45226ca7efd39ec6e04b9891ccf129d4f (patch) | |
| tree | 8059664ec8f60c17239672e69abea7d2970a59cd /update/plugin/phpBB3/trunk | |
| parent | 3abf3909dfa306d20358a3538da212b7cb64f52a (diff) | |
| download | instadisc-2d998db45226ca7efd39ec6e04b9891ccf129d4f.tar.gz instadisc-2d998db45226ca7efd39ec6e04b9891ccf129d4f.tar.bz2 instadisc-2d998db45226ca7efd39ec6e04b9891ccf129d4f.zip | |
General: Upgraded Verification ID generation
Verification IDs in Central and Update can now be between 0 and 2147483647. Closes #37
Diffstat (limited to 'update/plugin/phpBB3/trunk')
| -rw-r--r-- | update/plugin/phpBB3/trunk/root/includes/functions_instadisc.php | 4 |
1 files changed, 2 insertions, 2 deletions
| diff --git a/update/plugin/phpBB3/trunk/root/includes/functions_instadisc.php b/update/plugin/phpBB3/trunk/root/includes/functions_instadisc.php index df7c203..95d1956 100644 --- a/update/plugin/phpBB3/trunk/root/includes/functions_instadisc.php +++ b/update/plugin/phpBB3/trunk/root/includes/functions_instadisc.php | |||
| @@ -24,7 +24,7 @@ include($phpbb_root_path . 'includes/xmlrpc/xmlrpc.inc'); | |||
| 24 | function sendItem($title, $userID, $url, $fourm) | 24 | function sendItem($title, $userID, $url, $fourm) |
| 25 | { | 25 | { |
| 26 | global $config, $db, $phpbb_root_path; | 26 | global $config, $db, $phpbb_root_path; |
| 27 | $verID = rand(1,65536); | 27 | $verID = rand(1,2147483647); |
| 28 | 28 | ||
| 29 | $da = array('user_id' => $userID); | 29 | $da = array('user_id' => $userID); |
| 30 | $getuser = "SELECT * FROM " . USERS_TABLE . " WHERE " . $db->sql_build_array('SELECT', $da); | 30 | $getuser = "SELECT * FROM " . USERS_TABLE . " WHERE " . $db->sql_build_array('SELECT', $da); |
| @@ -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 = html_entity_decode(str_replace($phpbb_root_path, generate_board_url() . '/', $url)); | 36 | $url = 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); |
