diff options
author | Brion Vibber <brion@pobox.com> | 2010-03-30 11:57:31 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-03-30 11:57:31 -0700 |
commit | 5db01b31356ab8f3a1884a7916040852fef493b0 (patch) | |
tree | 6d96cd6b43707d1de29def5af057af5cd32b7e4f /install.php | |
parent | 37b41d227d180ae303ff623fe24223ebcf5d5f9a (diff) |
Update call for renamed OStatus functions -- installer now no longer fails with a PHP fatal error when trying to set up the subscription to update@status.net.
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php index 9a7e27fa2..8a299f897 100644 --- a/install.php +++ b/install.php @@ -904,7 +904,7 @@ function registerInitialUser($nickname, $password, $email, $adminUpdates) if (class_exists('Ostatus_profile') && $adminUpdates) { try { - $oprofile = Ostatus_profile::ensureProfile('http://update.status.net/'); + $oprofile = Ostatus_profile::ensureProfileURL('http://update.status.net/'); Subscription::start($user->getProfile(), $oprofile->localProfile()); updateStatus("Set up subscription to <a href='http://update.status.net/'>update@status.net</a>."); } catch (Exception $e) { |