Index: trunk/phase3/thumb.php |
— | — | @@ -233,6 +233,8 @@ |
234 | 234 | // Check if this is a valid looking thumbnail request... |
235 | 235 | if ( preg_match( $thumbUrlRegex, $uri, $matches ) ) { |
236 | 236 | list( /* all */, $archOrTemp, $filename, $thumbname ) = $matches; |
| 237 | + $filename = urldecode( $filename ); |
| 238 | + $thumbname = urldecode( $thumbname ); |
237 | 239 | |
238 | 240 | $params = array( 'f' => $filename ); |
239 | 241 | if ( $archOrTemp == '/archive' ) { |