Case correction

This commit is contained in:
Michael 2016-11-14 05:44:18 +00:00
parent 3de7b6d6ce
commit 5ef688f1d2
1 changed files with 2 additions and 2 deletions

View File

@ -789,12 +789,12 @@ function short_link($url) {
$yourls->set('password', $yourls_password); $yourls->set('password', $yourls_password);
$yourls->set('ssl', $yourls_ssl); $yourls->set('ssl', $yourls_ssl);
$yourls->set('yourls-url', $yourls_url); $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 { } else {
// setup a cascade of shortening services // setup a cascade of shortening services
// try to get a short link from these services // try to get a short link from these services
// in the order ur1.ca, tinyurl // 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(); return $slinky->short();
} }