summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-08-01 09:04:38 +0100
committerAndrew Dolgov <[email protected]>2006-08-01 09:04:38 +0100
commitd11bc4de3a2a6a595661d28220c7f1ef807a7ffe (patch)
treebfec0220a3be98b5daa326a3602ae7f7d9da4de6
parent88040f5795f5217bbd2713bf756d97e16c6936a5 (diff)
correct help for labels
-rw-r--r--backend.php4
-rw-r--r--help/1.php4
2 files changed, 4 insertions, 4 deletions
diff --git a/backend.php b/backend.php
index 8b031affa..292f5e615 100644
--- a/backend.php
+++ b/backend.php
@@ -2235,8 +2235,8 @@
if ($subop == "test") {
- $expr = trim($_GET["expr"]);
- $descr = trim($_GET["descr"]);
+ $expr = db_unescape_string(trim($_GET["expr"]));
+ $descr = db_unescape_string(trim($_GET["descr"]));
print "<div id=\"infoBoxTitle\">Test label: $descr</div>";
diff --git a/help/1.php b/help/1.php
index b6174812a..3fd598f34 100644
--- a/help/1.php
+++ b/help/1.php
@@ -12,11 +12,11 @@
<p>Match all unread articles:</p>
-<pre>unread = true</pre>
+<pre>ttrss_user_entries.unread = true</pre>
<p>Matches all articles which mention Linux in the title:</p>
-<pre>title like '%Linux%'</pre>
+<pre>ttrss_user_entries.title like '%Linux%'</pre>
<p>See the database schema included in the distribution package for gruesome
details.</p>