6
At backpack/admin/download.php
xoops_cp_header() is output html header. and it killed after header function. So, it goes to below.
Before :
le="color: #000000"><?php xoops_cp_header(); if (!is_object($xoopsUser) && !$xoopsUser->isAdmin()){ redirect_header(XOOPS_URL,2,"User permission error"); exit(); }
After :
le="color: #000000"><?php if (!is_object($xoopsUser) && !$xoopsUser->isAdmin()){ xoops_cp_header(); redirect_header(XOOPS_URL,2,"User permission error"); exit(); }
bluemooninc.biz