Change Kanboard's website URL to use HTTPS everywhere

This commit is contained in:
Frederic Guillot
2016-04-30 12:10:27 -04:00
parent 9fa8f63d25
commit c3d06f7794
64 changed files with 152 additions and 152 deletions

View File

@@ -8,7 +8,7 @@ class WebLinkTest extends Base
{
public function testGetTitleFromHtml()
{
$url = 'http://kanboard.net/something';
$url = 'https://kanboard.net/something';
$title = 'My title';
$html = '<!DOCTYPE html><html><head><title> '.$title.' </title></head><body>Test</body></html>';
@@ -27,7 +27,7 @@ class WebLinkTest extends Base
public function testGetTitleFromUrl()
{
$url = 'http://kanboard.net/something';
$url = 'https://kanboard.net/something';
$html = '<!DOCTYPE html><html><head></head><body>Test</body></html>';
$webLink = new WebLink($this->container);