From 5db01b31356ab8f3a1884a7916040852fef493b0 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 30 Mar 2010 11:57:31 -0700 Subject: [PATCH] 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. --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index 9a7e27fa2c..8a299f8975 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 update@status.net."); } catch (Exception $e) {