From 4b3dff6ed580a7c5aec8fb50467043962861e0e7 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 7 Sep 2005 13:42:49 +0100 Subject: updated mysql schema --- functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index 297736036..bea443c27 100644 --- a/functions.php +++ b/functions.php @@ -115,14 +115,14 @@ $filters = array(); - $result = db_query($link, "SELECT regexp, + $result = db_query($link, "SELECT reg_exp, (SELECT name FROM ttrss_filter_types WHERE id = filter_type) as name FROM ttrss_filters"); while ($line = db_fetch_assoc($result)) { if (!$filters[$line["name"]]) $filters[$line["name"]] = array(); - array_push($filters[$line["name"]], $line["regexp"]); + array_push($filters[$line["name"]], $line["reg_exp"]); } foreach ($rss->items as $item) { -- cgit v1.2.3-54-g00ecf