humanmade / WPThumb

:warning: UNMAINTAINED :warning: On demand image resizing for WordPress
https://humanmade.co.uk/wpthumb/
170 stars 32 forks source link

Error notice in wpthumb_post_image() #47

Closed Rarst closed 11 years ago

Rarst commented 11 years ago

wpthumb_post_image() has this check at the very start:

if ( ( ! strpos( (string) $args, '=' ) ) && ! ( is_array( $args ) && isset( $args[0] ) && $args[0] == $args[1] ) ) {

and if $args is array it errors, because PHP doesn't cast arrays to strings.

PS could also use comment about what it actually checks, it is a little... non-obvious :)