]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
showcache.php column flag was conflicting with default flag
authorEvan Prodromou <evan@status.net>
Wed, 3 Feb 2010 17:13:07 +0000 (12:13 -0500)
committerEvan Prodromou <evan@status.net>
Wed, 3 Feb 2010 17:13:07 +0000 (12:13 -0500)
scripts/showcache.php

index f179795728dca051786df453e3c84dcf6a897baa..93b57a484b20be47c3c2f5fe1326cf8676604604 100644 (file)
 
 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
 
-$shortoptions = "t:c:v:k:";
+$shortoptions = "t:l:v:k:";
 
 $helptext = <<<ENDOFHELP
 USAGE: showcache.php <args>
 shows the cached object based on the args
 
   -t table     Table to look up
-  -c column    Column to look up, default "id"
+  -l column    Column to look up, default "id"
   -v value     Value to look up
   -k key       Key to look up; other args are ignored
 
@@ -44,7 +44,7 @@ if (!empty($karg)) {
     if (empty($table)) {
         die("No table or key specified\n");
     }
-    $column = get_option_value('c');
+    $column = get_option_value('l');
     if (empty($column)) {
         $column = 'id';
     }