From 50fe3550461819b7edeb6f841239398903470dc5 Mon Sep 17 00:00:00 2001 From: discomrade <83621080+discomrade@users.noreply.github.com> Date: Tue, 20 Feb 2024 06:38:46 +0000 Subject: [PATCH] add wildcard search examples --- ext/index/theme.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ext/index/theme.php b/ext/index/theme.php index 94761dda..4e10960b 100644 --- a/ext/index/theme.php +++ b/ext/index/theme.php @@ -203,8 +203,9 @@ and of course start organising your images :-) // BR(), P('Wildcard searches are possible as well using * for "any one, more, or none" and ? for "any one".'), - SHM_COMMAND_EXAMPLE("tagn*", 'Returns posts that are tagged with "tagname", "tagnot", or anything else that starts with "tagn".'), - SHM_COMMAND_EXAMPLE("tagn?me", 'Returns posts that are tagged with "tagname", "tagnome", or anything else that starts with "tagn", has one character, and ends with "me".'), + SHM_COMMAND_EXAMPLE("tag*", 'Returns posts that are tagged with "tag", "tags", "tagme", "tagname", or anything else that starts with "tag".'), + SHM_COMMAND_EXAMPLE("*name", 'Returns posts that are tagged with "name", "tagname", "othertagname" or anything else that ends with "name".'), + SHM_COMMAND_EXAMPLE("tagn?me", 'Returns posts that are tagged with "tagname", "tagnome", or anything else that starts with "tagn", then has one character, and ends with "me".'), // // //