correct help for labels
This commit is contained in:
parent
88040f5795
commit
d11bc4de3a
2 changed files with 4 additions and 4 deletions
|
@ -2235,8 +2235,8 @@
|
||||||
|
|
||||||
if ($subop == "test") {
|
if ($subop == "test") {
|
||||||
|
|
||||||
$expr = trim($_GET["expr"]);
|
$expr = db_unescape_string(trim($_GET["expr"]));
|
||||||
$descr = trim($_GET["descr"]);
|
$descr = db_unescape_string(trim($_GET["descr"]));
|
||||||
|
|
||||||
print "<div id=\"infoBoxTitle\">Test label: $descr</div>";
|
print "<div id=\"infoBoxTitle\">Test label: $descr</div>";
|
||||||
|
|
||||||
|
|
|
@ -12,11 +12,11 @@
|
||||||
|
|
||||||
<p>Match all unread articles:</p>
|
<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>
|
<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
|
<p>See the database schema included in the distribution package for gruesome
|
||||||
details.</p>
|
details.</p>
|
||||||
|
|
Loading…
Reference in a new issue