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>";
<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>