OStatus usage of static Validate::* calls fixed

This commit is contained in:
Mikael Nordfeldth
2015-11-08 10:33:41 +01:00
parent f29daa22b6
commit 65184782aa
9 changed files with 24 additions and 12 deletions

View File

@@ -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 {