semseoymas Wrote:
-------------------------------------------------------
> httpxxxxx.comGET/wp-content/themes/sahifa/timthumb.php?src=/wp-content
> /uploads/2015/11/Alondra.jpg&h=125&w=272&a=c
> httpxxxxx.comGET/wp-content/themes/sahifa/timthumb.php?src=/wp-content
> /uploads/2015/11/Alondra.jpg&h=50&w=50&a=c
Given the added values "&h=50&w=50&a=c" these entries are unique so it is working as intended.
$request_uri = $uri + $args (from memory, I haven't looked it up)
So you need to look at the documentation what each variable actually contains and either use that or strip the arguments.
-------------------------------------------------------
> httpxxxxx.comGET/wp-content/themes/sahifa/timthumb.php?src=/wp-content
> /uploads/2015/11/Alondra.jpg&h=125&w=272&a=c
> httpxxxxx.comGET/wp-content/themes/sahifa/timthumb.php?src=/wp-content
> /uploads/2015/11/Alondra.jpg&h=50&w=50&a=c
Given the added values "&h=50&w=50&a=c" these entries are unique so it is working as intended.
$request_uri = $uri + $args (from memory, I haven't looked it up)
So you need to look at the documentation what each variable actually contains and either use that or strip the arguments.