gluck Posted May 31, 2013 Share Posted May 31, 2013 Пользователи 1.2...1.4, проверьте плиз у себя — что будет если в поиске по производителям указать id несуществующего производителя? Например так: /manufacturer.php?id_manufacturer=100500 Как будет выглядеть страница с ошибкой? Link to comment Share on other sites More sharing options...
absent Posted May 31, 2013 Share Posted May 31, 2013 и что там? Link to comment Share on other sites More sharing options...
webprog Posted June 4, 2013 Share Posted June 4, 2013 Преста 1.3: все ломается Преста 1.4 полет нормальный: Производителя не существует. или Выявлено ошибок: 1 ошибка : Производителя не существует. Link to comment Share on other sites More sharing options...
gluck Posted June 4, 2013 Author Share Posted June 4, 2013 Ага, значит это не у меня одного глюк Значить чтобы в 1.2...1.3 ничего не ломалось, нужно в /supplier.php этот код $object = new $className(intval($id), $cookie->id_lang); if (!Validate::isLoadedObject($object)) { $errors[] = Tools::displayError('object does not exist'); } заменить на код $object = new $className(intval($id), $cookie->id_lang); if (!Validate::isLoadedObject($object)) { include(dirname(__FILE__).'/header.php'); $errors[] = Tools::displayError('object does not exist'); } 1 Link to comment Share on other sites More sharing options...
webprog Posted June 5, 2013 Share Posted June 5, 2013 Ага, значит это не у меня одного глюк Значить чтобы в 1.2...1.3 ничего не ломалось, нужно в /supplier.php этот код $object = new $className(intval($id), $cookie->id_lang); if (!Validate::isLoadedObject($object)) { $errors[] = Tools::displayError('object does not exist'); } заменить на код $object = new $className(intval($id), $cookie->id_lang); if (!Validate::isLoadedObject($object)) { include(dirname(__FILE__).'/header.php'); $errors[] = Tools::displayError('object does not exist'); } Да точно) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now