From 8f56b9ae2ca4765616738aef966eafbdad0bca36 Mon Sep 17 00:00:00 2001 From: Shish Date: Mon, 16 Jan 2012 19:58:03 +0000 Subject: [PATCH] argh php, syntax that used to be required is now deprecated... --- core/imageboard.pack.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/imageboard.pack.php b/core/imageboard.pack.php index dfc0565f..428a4484 100644 --- a/core/imageboard.pack.php +++ b/core/imageboard.pack.php @@ -511,7 +511,7 @@ class Image { global $_flexihash, $_fh_last_opts; $matches = array(); - if(preg_match("/(.*){(.*)}(.*)/", $tmpl, &$matches)) { + if(preg_match("/(.*){(.*)}(.*)/", $tmpl, $matches)) { $pre = $matches[1]; $opts = $matches[2]; $post = $matches[3];