diff options
author | Brion Vibber <brion@pobox.com> | 2010-03-19 11:17:56 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-03-19 11:17:56 -0700 |
commit | b97400bd6f49dfac71124a3243d1c27f49822f58 (patch) | |
tree | a6d37b93ea64e4ddaa234c32cd3ee130cf31537e /plugins/OStatus/scripts | |
parent | d2e66641322a3297be6a3a6680d10ed7b6720c0e (diff) |
clarify output on fixup-shadow.php
Diffstat (limited to 'plugins/OStatus/scripts')
-rw-r--r-- | plugins/OStatus/scripts/fixup-shadow.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/OStatus/scripts/fixup-shadow.php b/plugins/OStatus/scripts/fixup-shadow.php index 0171b77bc..ec014c787 100644 --- a/plugins/OStatus/scripts/fixup-shadow.php +++ b/plugins/OStatus/scripts/fixup-shadow.php @@ -50,7 +50,7 @@ $encGroup = str_replace($marker, '%', $encGroup); $sql = "SELECT * FROM ostatus_profile WHERE uri LIKE '%s' OR uri LIKE '%s'"; $oprofile->query(sprintf($sql, $encProfile, $encGroup)); -echo "Found $oprofile->N bogus ostatus_profile entries:\n"; +echo "Found $oprofile->N bogus ostatus_profile entries for local users and groups:\n"; while ($oprofile->fetch()) { echo "$oprofile->uri"; @@ -58,7 +58,7 @@ while ($oprofile->fetch()) { if ($dry) { echo " (unchanged)\n"; } else { - echo " deleting..."; + echo " removing bogus ostatus_profile entry..."; $evil = clone($oprofile); $evil->delete(); echo " ok\n"; |