forked from GNUsocial/gnu-social
OStatus usage of static Validate::* calls fixed
This commit is contained in:
@@ -36,7 +36,9 @@ END_OF_HELP;
|
||||
|
||||
require_once INSTALLDIR.'/scripts/commandline.inc';
|
||||
|
||||
if (empty($args[0]) || !Validate::uri($args[0])) {
|
||||
$validate = new Validate();
|
||||
|
||||
if (empty($args[0]) || !$validate->uri($args[0])) {
|
||||
print "$helptext";
|
||||
exit(1);
|
||||
}
|
||||
|
@@ -35,7 +35,9 @@ END_OF_HELP;
|
||||
|
||||
require_once INSTALLDIR.'/scripts/commandline.inc';
|
||||
|
||||
if (empty($args[0]) || !Validate::uri($args[0])) {
|
||||
$validate = new Validate();
|
||||
|
||||
if (empty($args[0]) || !$validate->uri($args[0])) {
|
||||
print "$helptext";
|
||||
exit(1);
|
||||
}
|
||||
|
@@ -99,6 +99,7 @@ function fixProfile($uri) {
|
||||
}
|
||||
|
||||
$ok = true;
|
||||
$validate = new Validate();
|
||||
if (have_option('all')) {
|
||||
$oprofile = new Ostatus_profile();
|
||||
$oprofile->find();
|
||||
@@ -115,7 +116,7 @@ if (have_option('all')) {
|
||||
while ($oprofile->fetch()) {
|
||||
$ok = fixProfile($oprofile->uri) && $ok;
|
||||
}
|
||||
} else if (!empty($args[0]) && Validate::uri($args[0])) {
|
||||
} else if (!empty($args[0]) && $validate->uri($args[0])) {
|
||||
$uri = $args[0];
|
||||
$ok = fixProfile($uri);
|
||||
} else {
|
||||
|
@@ -32,7 +32,9 @@ END_OF_HELP;
|
||||
|
||||
require_once INSTALLDIR.'/scripts/commandline.inc';
|
||||
|
||||
if (empty($args[0]) || !Validate::uri($args[0])) {
|
||||
$validate = new Validate();
|
||||
|
||||
if (empty($args[0]) || !$validate->uri($args[0])) {
|
||||
print "$helptext";
|
||||
exit(1);
|
||||
}
|
||||
|
@@ -207,10 +207,11 @@ class LooseOstatusProfile extends Ostatus_profile
|
||||
function pullOstatusProfile($uri) {
|
||||
|
||||
$oprofile = null;
|
||||
$validate = new Validate();
|
||||
|
||||
if (Validate::email($uri)) {
|
||||
if ($validate->email($uri)) {
|
||||
$oprofile = LooseOstatusProfile::updateWebfinger($uri);
|
||||
} else if (Validate::uri($uri)) {
|
||||
} else if ($validate->uri($uri)) {
|
||||
$oprofile = LooseOstatusProfile::updateProfileURL($uri);
|
||||
} else {
|
||||
print "Sorry, we could not reach the address: $uri\n";
|
||||
|
Reference in New Issue
Block a user