rifanece / timthumb

Automatically exported from code.google.com/p/timthumb
0 stars 0 forks source link

line35: get_request( '9', 80 ) #9

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Hi, i'm a beginner, but this looks wrong
'q' will be right if i'm understanding the code correctly?!

Original issue reported on code.google.com by michael.lauermann@gmail.com on 23 Nov 2008 at 11:48

GoogleCodeExporter commented 8 years ago
You're right - that is wrong. Thanks for reminding me. I shall update.

Original comment by BinaryMoon on 9 Jan 2009 at 8:46

GoogleCodeExporter commented 8 years ago
I also noticed this after we updated all our themes with the new thumb.php

$quality = preg_replace( "/[^0-9]+/", "", get_request( '9', 80 ) );

should be

$quality = preg_replace( "/[^0-9]+/", "", get_request( 'q', 80 ) );

Original comment by magnusje...@gmail.com on 4 Mar 2009 at 10:19

GoogleCodeExporter commented 8 years ago

Original comment by BinaryMoon on 14 Mar 2009 at 9:06