codebykat / wp-post-by-email

Post By Email plugin for WordPress
GNU General Public License v2.0
31 stars 11 forks source link

[Patch] Missing second arg on substr #26

Open bagley opened 10 years ago

bagley commented 10 years ago

In the file 'post-by-email/include/Horde/Mime/Part.php' on line 2148 it has the wrong number of arguments:

$id = substr($id, $base_pos);

Since it appears we are checking from the beginning of the string, should be:

$id = substr($id, 0, $base_pos);

Great plugin!

codebykat commented 9 years ago

Hi, thanks for this report. What version of PHP did that happen with?