summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-09-07 13:42:49 +0100
committerAndrew Dolgov <[email protected]>2005-09-07 13:42:49 +0100
commit4b3dff6ed580a7c5aec8fb50467043962861e0e7 (patch)
tree970e617673c5a9b35233ce3f67dcc5f07423528c /functions.php
parentb6eefba52be4c4846fdecfc4ee97fdf7e123d292 (diff)
updated mysql schema
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php4
1 files changed, 2 insertions, 2 deletions
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) {