diff --git a/core/util.inc.php b/core/util.inc.php
index b7b0baec..4bf59033 100644
--- a/core/util.inc.php
+++ b/core/util.inc.php
@@ -386,10 +386,24 @@ function mtimefile($file) {
return "$data_href/$file?$mtime";
}
+/*
+ * like glob, with support for matching very long patterns with braces
+ */
function zglob($pattern) {
- $r = glob($pattern);
- if($r) return $r;
- else return array();
+ $results = array();
+ if(preg_match('/(.*)\{(.*)\}(.*)/', $pattern, $matches)) {
+ $braced = explode(",", $matches[2]);
+ foreach($braced as $b) {
+ $sub_pattern = $matches[1].$b.$matches[3];
+ $results = array_merge($results, zglob($sub_pattern));
+ }
+ return $results;
+ }
+ else {
+ $r = glob($pattern);
+ if($r) return $r;
+ else return array();
+ }
}
@@ -1088,8 +1102,8 @@ function _get_themelet_files($_theme) {
$base_themelets[] = 'themes/'.$_theme.'/layout.class.php';
$base_themelets[] = 'themes/'.$_theme.'/themelet.class.php';
- $ext_themelets = glob("ext/{".ENABLED_EXTS."}/theme.php", GLOB_BRACE);
- $custom_themelets = glob('themes/'.$_theme.'/{'.ENABLED_EXTS.'}.theme.php', GLOB_BRACE);
+ $ext_themelets = zglob("ext/{".ENABLED_EXTS."}/theme.php");
+ $custom_themelets = zglob('themes/'.$_theme.'/{'.ENABLED_EXTS.'}.theme.php');
return array_merge($base_themelets, $ext_themelets, $custom_themelets);
}
diff --git a/ext/et/main.php b/ext/et/main.php
index 6b087d57..65b72b97 100644
--- a/ext/et/main.php
+++ b/ext/et/main.php
@@ -54,7 +54,7 @@ class ET extends Extension {
$info['thumb_quality'] = $config->get_int('thumb_quality');
$info['thumb_width'] = $config->get_int('thumb_width');
$info['thumb_height'] = $config->get_int('thumb_height');
- $info['thumb_mem'] = $config->get_int("thumb_max_memory");
+ $info['thumb_mem'] = $config->get_int("thumb_mem_limit");
$info['stat_images'] = $database->get_one("SELECT COUNT(*) FROM images");
$info['stat_comments'] = $database->get_one("SELECT COUNT(*) FROM comments");
diff --git a/ext/ext_manager/main.php b/ext/ext_manager/main.php
index 696f5046..851ebdbf 100644
--- a/ext/ext_manager/main.php
+++ b/ext/ext_manager/main.php
@@ -141,10 +141,10 @@ class ExtManager extends Extension {
private function get_extensions(/*bool*/ $all) {
$extensions = array();
if($all) {
- $exts = glob("ext/*/main.php", GLOB_BRACE);
+ $exts = zglob("ext/*/main.php");
}
else {
- $exts = glob("ext/{".ENABLED_EXTS."}/main.php", GLOB_BRACE);
+ $exts = zglob("ext/{".ENABLED_EXTS."}/main.php");
}
foreach($exts as $main) {
$extensions[] = new ExtensionInfo($main);
diff --git a/ext/handle_ico/main.php b/ext/handle_ico/main.php
index 7582fc53..1d642b0f 100644
--- a/ext/handle_ico/main.php
+++ b/ext/handle_ico/main.php
@@ -97,7 +97,7 @@ class IcoFileHandler extends Extension {
$w = $config->get_int("thumb_width");
$h = $config->get_int("thumb_height");
$q = $config->get_int("thumb_quality");
- $mem = $config->get_int("thumb_max_memory") / 1024 / 1024; // IM takes memory in MB
+ $mem = $config->get_int("thumb_mem_limit") / 1024 / 1024; // IM takes memory in MB
if($config->get_bool("ico_convert")) {
// "-limit memory $mem" broken?
diff --git a/ext/handle_pixel/main.php b/ext/handle_pixel/main.php
index 2f1ba9ae..c6779247 100644
--- a/ext/handle_pixel/main.php
+++ b/ext/handle_pixel/main.php
@@ -90,7 +90,6 @@ class PixelFileHandler extends DataHandlerExtension {
$w = $config->get_int("thumb_width");
$h = $config->get_int("thumb_height");
$q = $config->get_int("thumb_quality");
- $mem = $config->get_int("thumb_max_memory") / 1024 / 1024; // IM takes memory in MB
// Windows is a special case
if(in_array("OS", $_SERVER) && $_SERVER["OS"] == 'Windows_NT') {
diff --git a/ext/home/main.php b/ext/home/main.php
index 548b8ea7..ca00a98d 100644
--- a/ext/home/main.php
+++ b/ext/home/main.php
@@ -70,8 +70,8 @@ class Home extends Extension {
}
else {
$main_links = '[url=site://post/list]Posts[/url] [url=site://comment/list]Comments[/url] [url=site://tags]Tags[/url]';
- if(file_exists("ext/pools")) {$main_links .= ' [url=site://pools]Pools[/url]';}
- if(file_exists("ext/wiki")) {$main_links .= ' [url=site://wiki]Wiki[/url]';}
+ if(class_exists("Pools")) {$main_links .= ' [url=site://pools]Pools[/url]';}
+ if(class_exists("Wiki")) {$main_links .= ' [url=site://wiki]Wiki[/url]';}
$main_links .= ' [url=site://ext_doc]>>[/url]';
}
$main_links = format_text($main_links);
diff --git a/ext/image/main.php b/ext/image/main.php
index 836c65e9..6f72a557 100644
--- a/ext/image/main.php
+++ b/ext/image/main.php
@@ -267,7 +267,9 @@ class ImageIO extends Extension {
$sb->add_int_option("thumb_quality");
$sb->add_label(" % quality ");
- $sb->add_shorthand_int_option("thumb_mem_limit", "
Max memory use: ");
+ if($config->get_string("thumb_engine") == "gd") {
+ $sb->add_shorthand_int_option("thumb_mem_limit", "
Max memory use: ");
+ }
$event->panel->add_block($sb);
}
@@ -293,7 +295,7 @@ class ImageIO extends Extension {
if($handler == "merge" || isset($_GET['update'])) {
$merged = array_merge($image->get_tag_array(), $existing->get_tag_array());
send_event(new TagSetEvent($existing, $merged));
- if(isset($_GET['rating']) && isset($_GET['update']) && file_exists("ext/rating")){
+ if(isset($_GET['rating']) && isset($_GET['update']) && class_exists("Ratings")){
send_event(new RatingSetEvent($existing, $user, $_GET['rating']));
}
if(isset($_GET['source']) && isset($_GET['update'])){
diff --git a/ext/upload/main.php b/ext/upload/main.php
index 06723691..c836f03f 100644
--- a/ext/upload/main.php
+++ b/ext/upload/main.php
@@ -329,7 +329,7 @@ class Upload extends Extension {
}
// Checks if url contains rating, also checks if the rating extension is enabled.
- if($config->get_string("transload_engine", "none") != "none" && file_exists("ext/rating") && !empty($_GET['rating'])) {
+ if($config->get_string("transload_engine", "none") != "none" && class_exists("Ratings") && !empty($_GET['rating'])) {
// Rating event will validate that this is s/q/e/u
$rating = strtolower($_GET['rating']);
$rating = $rating[0];
diff --git a/ext/upload/theme.php b/ext/upload/theme.php
index 80494214..8fe5c3fe 100644
--- a/ext/upload/theme.php
+++ b/ext/upload/theme.php
@@ -215,10 +215,10 @@ class UploadTheme extends Themelet {
// Bookmarklet checks if shimmie supports ext. If not, won't upload to site/shows alert saying not supported.
$supported_ext = "jpg jpeg gif png";
- if(file_exists("ext/handle_flash")){$supported_ext .= " swf";}
- if(file_exists("ext/handle_ico")){$supported_ext .= " ico ani cur";}
- if(file_exists("ext/handle_mp3")){$supported_ext .= " mp3";}
- if(file_exists("ext/handle_svg")){$supported_ext .= " svg";}
+ if(class_exists("FlashFileHandler")){$supported_ext .= " swf";}
+ if(class_exists("ICOFileHandler")){$supported_ext .= " ico ani cur";}
+ if(class_exists("MP3FileHandler")){$supported_ext .= " mp3";}
+ if(class_exists("SVGFileHandler")){$supported_ext .= " svg";}
$title = "Booru to " . $config->get_string('title');
// CA=0: Ask to use current or new tags | CA=1: Always use current tags | CA=2: Always use new tags
$html .= '
Day/Month/Year";} + if(class_exists("NumericScore")){ $custom_sublinks .= "