From c38a4b2e8452743f0f9a7e7284e3724f7958717c Mon Sep 17 00:00:00 2001 From: Trevor Slocum Date: Fri, 28 Dec 2012 00:09:20 -0800 Subject: [PATCH] Fix strict warning --- inc/flatfile/flatfile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/flatfile/flatfile.php b/inc/flatfile/flatfile.php index 4d2d4d9..15ea7b9 100644 --- a/inc/flatfile/flatfile.php +++ b/inc/flatfile/flatfile.php @@ -562,7 +562,7 @@ class LikeWhereClause extends WhereClause $this->regexp = '/^' . str_replace('%','.*', preg_quote($value)) . '$/i'; } - function testRow ($tablerow) { + function testRow ($tablerow, $rowSchema = NULL) { return preg_match($this->regexp, $tablerow[$this->field]); } }