Ancalagon79 wrote:Can you give a link to your gallery ?
http://atf.vlsu.ru/glr
It's strange, but when i edited ivControllerAbstract.class.php, some problems were solved.
Old code:
if (isset($_REQUEST[$t]))
{
$out[$t] = $_REQUEST[$t];
}
New code:
if (isset($_REQUEST[$t])) {
$out[$t] = $_REQUEST[$t];
if (isset($_GET[$t])) $out[$t] = $_GET[$t];
if (isset($_POST[$t])) $out[$t] = $_POST[$t];
}
I don't know how, but script gettet login in md5... Now some of functions are not working and i'm working at it
P.S. Sorry for my English mistaked if them were...