diff options
author | lolcat <will@lolcat.ca> | 2024-02-27 04:27:18 +0000 |
---|---|---|
committer | lolcat <will@lolcat.ca> | 2024-02-27 04:27:18 +0000 |
commit | 5143d95014ac50a42cfe3e3b6c0a2e8466adf953 (patch) | |
tree | 5cd419ad1d5e530fd763114209774c848b86fe2b /lib | |
parent | ba5cd270071023dff45151adb498974a47c53b80 (diff) | |
parent | a20d4de1e4d1a00c0d152136e5d7cd81481ace7b (diff) |
Merge branch 'master' into feature/fix_parse_instances
Diffstat (limited to 'lib')
-rw-r--r-- | lib/frontend.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/frontend.php b/lib/frontend.php index 738ad83..7e3b6fb 100644 --- a/lib/frontend.php +++ b/lib/frontend.php @@ -902,6 +902,7 @@ class frontend{ "yandex" => "Yandex", "google" => "Google", "yep" => "Yep", + "mwmbl" => "Mwmbl", "mojeek" => "Mojeek", "marginalia" => "Marginalia", "wiby" => "wiby", @@ -1018,6 +1019,11 @@ class frontend{ $lib = new facebook(); break;*/ + case "mwmbl": + include "scraper/mwmbl.php"; + $lib = new mwmbl(); + break; + case "mojeek": include "scraper/mojeek.php"; $lib = new mojeek(); |