diff options
Diffstat (limited to 'images.php')
-rw-r--r-- | images.php | 17 |
1 files changed, 3 insertions, 14 deletions
@@ -3,6 +3,8 @@ /* Initialize random shit */ +include "data/config.php"; + include "lib/frontend.php"; $frontend = new frontend(); @@ -26,20 +28,7 @@ try{ }catch(Exception $error){ - echo - $frontend->drawerror( - "Shit", - 'This scraper returned an error:' . - '<div class="code">' . htmlspecialchars($error->getMessage()) . '</div>' . - 'Things you can try:' . - '<ul>' . - '<li>Use a different scraper</li>' . - '<li>Remove keywords that could cause errors</li>' . - '<li>Use another 4get instance</li>' . - '</ul><br>' . - 'If the error persists, please <a href="/about">contact the administrator</a>.' - ); - die(); + $frontend->drawscrapererror($error->getMessage(), $get, "images"); } if(count($results["image"]) === 0){ |