minor
This commit is contained in:
parent
fc239cb8a2
commit
6e7d7c5017
@ -60,6 +60,8 @@ function phpiniSizeToBytes($val) {
|
|||||||
$val *= 1024;
|
$val *= 1024;
|
||||||
case 'k':
|
case 'k':
|
||||||
$val *= 1024;
|
$val *= 1024;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (int)$val;
|
return (int)$val;
|
||||||
|
@ -3,6 +3,9 @@
|
|||||||
require_once('include/cli_startup.php');
|
require_once('include/cli_startup.php');
|
||||||
require_once('include/zot.php');
|
require_once('include/zot.php');
|
||||||
|
|
||||||
|
// CLI utility
|
||||||
|
// performs zot_finger on $argv[1], which is a hex_encoded webbie/reddress
|
||||||
|
|
||||||
function gprobe_run($argc,$argv){
|
function gprobe_run($argc,$argv){
|
||||||
|
|
||||||
cli_startup();
|
cli_startup();
|
||||||
|
Reference in New Issue
Block a user