some minor stuff
This commit is contained in:
parent
2d65eae2f5
commit
d9185540a5
1 changed files with 4 additions and 4 deletions
|
@ -19,7 +19,7 @@
|
||||||
* License: AGPLv3 or later, same as Friendica
|
* License: AGPLv3 or later, same as Friendica
|
||||||
**/
|
**/
|
||||||
|
|
||||||
if ($argc!=2 || $argv[1]=="-h" || $argv[1]=="--help" || $argv[1]=="-?") {
|
if ($argc != 2 || $argv[1] == "-h" || $argv[1] == "--help" || $argv[1] == "-?") {
|
||||||
echo "Usage: ".$argv[0]." [-h|profile_url]\r\n";
|
echo "Usage: ".$argv[0]." [-h|profile_url]\r\n";
|
||||||
echo " -h, -?, --help ... show this help\r\n";
|
echo " -h, -?, --help ... show this help\r\n";
|
||||||
echo " profile_url ...... The URL of the profile you want to silence\r\n";
|
echo " profile_url ...... The URL of the profile you want to silence\r\n";
|
||||||
|
@ -33,11 +33,11 @@ if ($argc!=2 || $argv[1]=="-h" || $argv[1]=="--help" || $argv[1]=="-?") {
|
||||||
use Friendica\Database\DBM;
|
use Friendica\Database\DBM;
|
||||||
use Friendica\Network\Probe;
|
use Friendica\Network\Probe;
|
||||||
|
|
||||||
require_once("boot.php");
|
require_once('boot.php');
|
||||||
require_once('include/dba.php');
|
require_once('include/dba.php');
|
||||||
require_once("include/text.php");
|
require_once('include/text.php');
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
require_once ".htconfig.php";
|
require_once('.htconfig.php');
|
||||||
|
|
||||||
dba::connect($db_host, $db_user, $db_pass, $db_data);
|
dba::connect($db_host, $db_user, $db_pass, $db_data);
|
||||||
unset($db_host, $db_user, $db_pass, $db_data);
|
unset($db_host, $db_user, $db_pass, $db_data);
|
||||||
|
|
Loading…
Reference in a new issue