Image to Post - Comments

This commit is contained in:
Matthew Barbour 2020-10-26 10:12:36 -05:00
parent 773be88994
commit 2b6e28683f
2 changed files with 6 additions and 6 deletions

View File

@ -5,7 +5,7 @@ class CommentListInfo extends ExtensionInfo
public const KEY = "comment";
public $key = self::KEY;
public $name = "Image Comments";
public $name = "Post Comments";
public $url = self::SHIMMIE_URL;
public $authors = self::SHISH_AUTHOR;
public $license = self::LICENSE_GPLV2;

View File

@ -289,23 +289,23 @@ class CommentListTheme extends Themelet
public function get_help_html()
{
return '<p>Search for images containing a certain number of comments, or comments by a particular individual.</p>
return '<p>Search for posts containing a certain number of comments, or comments by a particular individual.</p>
<div class="command_example">
<pre>comments=1</pre>
<p>Returns images with exactly 1 comment.</p>
<p>Returns posts with exactly 1 comment.</p>
</div>
<div class="command_example">
<pre>comments>0</pre>
<p>Returns images with 1 or more comments. </p>
<p>Returns posts with 1 or more comments. </p>
</div>
<p>Can use &lt;, &lt;=, &gt;, &gt;=, or =.</p>
<div class="command_example">
<pre>commented_by:username</pre>
<p>Returns images that have been commented on by "username". </p>
<p>Returns posts that have been commented on by "username". </p>
</div>
<div class="command_example">
<pre>commented_by_userno:123</pre>
<p>Returns images that have been commented on by user 123. </p>
<p>Returns posts that have been commented on by user 123. </p>
</div>
';
}