missing file in checkin

This commit is contained in:
friendica 2014-01-28 20:15:57 -08:00
parent d970c69f91
commit 2822e6e70a

11
mod/online.php Normal file
View File

@ -0,0 +1,11 @@
<?php /** @file */
function online_init(&$a) {
$ret = array('result' => false);
if(argc() != 2)
json_return_and_die($ret);
$ret = get_online_status(argv(1));
json_return_and_die($ret);
}