From: Michael Date: Mon, 14 Nov 2016 05:44:18 +0000 (+0000) Subject: Case correction X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=5ef688f1d2188d58ee42792b597b02fc47c57472;p=friendica.git Case correction --- diff --git a/include/network.php b/include/network.php index 91cfe35798..351951846c 100644 --- a/include/network.php +++ b/include/network.php @@ -789,12 +789,12 @@ function short_link($url) { $yourls->set('password', $yourls_password); $yourls->set('ssl', $yourls_ssl); $yourls->set('yourls-url', $yourls_url); - $slinky->set_cascade(array($yourls, new Slinky_UR1ca(), new Slinky_TinyURL())); + $slinky->set_cascade(array($yourls, new Slinky_Ur1ca(), new Slinky_TinyURL())); } else { // setup a cascade of shortening services // try to get a short link from these services // in the order ur1.ca, tinyurl - $slinky->set_cascade(array(new Slinky_ur1ca(), new Slinky_TinyURL())); + $slinky->set_cascade(array(new Slinky_Ur1ca(), new Slinky_TinyURL())); } return $slinky->short(); }