diff --git a/ext/approval/main.php b/ext/approval/main.php index c26a93d0..ee012436 100644 --- a/ext/approval/main.php +++ b/ext/approval/main.php @@ -33,7 +33,7 @@ class Approval extends Extension $image_id = isset($_POST['image_id']) ? $_POST['image_id'] : null; } if (empty($image_id)) { - throw new SCoreException("Can not approve image: No valid Image ID given."); + throw new SCoreException("Can not approve post: No valid Post ID given."); } self::approve_image($image_id); @@ -48,7 +48,7 @@ class Approval extends Extension $image_id = isset($_POST['image_id']) ? $_POST['image_id'] : null; } if (empty($image_id)) { - throw new SCoreException("Can not disapprove image: No valid Image ID given."); + throw new SCoreException("Can not disapprove image: No valid Post ID given."); } self::disapprove_image($image_id); diff --git a/ext/approval/theme.php b/ext/approval/theme.php index bde28240..7b85c43c 100644 --- a/ext/approval/theme.php +++ b/ext/approval/theme.php @@ -27,14 +27,14 @@ class ApprovalTheme extends Themelet public function get_help_html() { - return '
Search for images that are approved/not approved.
+ return 'Search for posts that are approved/not approved.
approved:yes-
Returns images that have been approved.
+Returns posts that have been approved.
approved:no-
Returns images that have not been approved.
+Returns posts that have not been approved.