diff options
author | lolcat <will@lolcat.ca> | 2023-11-07 08:04:56 -0500 |
---|---|---|
committer | lolcat <will@lolcat.ca> | 2023-11-07 08:04:56 -0500 |
commit | 785452873f0ee0a27fc157b482b7551560f0282d (patch) | |
tree | 4c70e240031ed3868425ca683c83ebfd378a9159 /videos.php | |
parent | 64b090ee058953aed2246967332c7f0b6623cd8f (diff) |
fix typo
Diffstat (limited to 'videos.php')
-rw-r--r-- | videos.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(); @@ -28,20 +30,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, "videos"); } $categories = [ |