summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorChristopher Vollick <psycotica0@gmail.com>2010-04-07 07:17:05 -0400
committerChristopher Vollick <psycotica0@gmail.com>2010-04-07 07:17:05 -0400
commitf09e81ff5263da2342a41ed24a428b1e0ef7d851 (patch)
tree5a419c1f04a9a44a84e32c0242cb30a66b554164 /scripts
parentd352e5f5c4cb87be97cc7ec9d619037087dfb391 (diff)
Made it so that settag would list tags.
Very useful to be able to know what tags a site already has.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/settag.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/scripts/settag.php b/scripts/settag.php
index e91d5eb50..d1b06ff10 100644
--- a/scripts/settag.php
+++ b/scripts/settag.php
@@ -33,13 +33,12 @@ END_OF_SETTAG_HELP;
require_once INSTALLDIR.'/scripts/commandline.inc';
-if (count($args) != 2) {
+if (count($args) < 1) {
show_help();
exit(1);
}
$nickname = $args[0];
-$tag = strtolower($args[1]);
$sn = Status_network::memGet('nickname', $nickname);
@@ -50,6 +49,12 @@ if (empty($sn)) {
$tags = $sn->getTags();
+if (count($args) == 1) {
+ print(implode(', ', $tags) . "\n");
+ exit(0);
+}
+$tag = $args[1];
+
$i = array_search($tag, $tags);
if ($i !== false) {