We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18d961b commit 5b5d9f0Copy full SHA for 5b5d9f0
tools/submit.php
@@ -15,7 +15,8 @@
15
if (empty($user_id)) {
16
die("cannot find " . $argv[1] . "'s information from database");
17
}
18
- $loc_string = sprintf("/exmdb=3:%d:%x", $user_id, $argv[2]);
+ $msgid = intval($argv[2], 0);
19
+ $loc_string = sprintf("/exmdb=3:%d:%x", $user_id, $msgid);
20
// append a null terminate character for C
21
$loc_string .= hex2bin('00');
22
$_SERVER['REMOTE_USER'] = $argv[1];
0 commit comments