forked from GNUsocial/gnu-social
		
	Made it so that settag would list tags.
Very useful to be able to know what tags a site already has.
This commit is contained in:
		@@ -33,13 +33,12 @@ END_OF_SETTAG_HELP;
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
require_once INSTALLDIR.'/scripts/commandline.inc';
 | 
					require_once INSTALLDIR.'/scripts/commandline.inc';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if (count($args) != 2) {
 | 
					if (count($args) < 1) {
 | 
				
			||||||
    show_help();
 | 
					    show_help();
 | 
				
			||||||
    exit(1);
 | 
					    exit(1);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
$nickname = $args[0];
 | 
					$nickname = $args[0];
 | 
				
			||||||
$tag = strtolower($args[1]);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
$sn = Status_network::memGet('nickname', $nickname);
 | 
					$sn = Status_network::memGet('nickname', $nickname);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -50,6 +49,12 @@ if (empty($sn)) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
$tags = $sn->getTags();
 | 
					$tags = $sn->getTags();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if (count($args) == 1) {
 | 
				
			||||||
 | 
						print(implode(', ', $tags) . "\n");
 | 
				
			||||||
 | 
						exit(0);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					$tag = $args[1];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
$i = array_search($tag, $tags);
 | 
					$i = array_search($tag, $tags);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if ($i !== false) {
 | 
					if ($i !== false) {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user