I have a code execution path going thru :
index.php -> admin_login.php -> admin_top.php
It should exec index.php then go to admin_login.
Inside admin_login there is a call to aff_armor.php.
admin_login should call aff_armor and then when aff_armor finishes admin_login should get hand back and continue.
But It doesn't.
If I run in debugger (F9), aff_armor is called but it never gets back to admin_login. Instead the defaut start file is executed at the end of aff_armor !!
If I don't run it in debugger mode (CTRL F9), it works perfectly. Means, aff_armor is called but when it finishes,admin_login get hand back and it goes up to the end of the execution path.
And this happens even if aff_armor.php is empty (no code, just empty php brackets).
Here is how aff_armor is called :
<img src='aff_armor.php?city_id=<?=$grc->user->city->get_id()?>' align="right">
Is this a bug of the debugger ??
Thanks a lot for your help !