aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/LinkUtilsTest.php
diff options
context:
space:
mode:
authorVirtualTam <virtualtam@flibidi.net>2016-03-14 21:29:19 +0100
committerVirtualTam <virtualtam@flibidi.net>2016-03-14 21:29:19 +0100
commit5816801b15e1a0e53f87aa48267243bff44b5f64 (patch)
tree3be406a48569c02a17584de99982dedd25627830 /tests/LinkUtilsTest.php
parent890afc32f744859d11b97eb26ed5c030af9b4145 (diff)
parent68ea1d2b30db8ab295e47e9ac5f6c8e81676caf7 (diff)
downloadShaarli-5816801b15e1a0e53f87aa48267243bff44b5f64.tar.gz
Shaarli-5816801b15e1a0e53f87aa48267243bff44b5f64.tar.zst
Shaarli-5816801b15e1a0e53f87aa48267243bff44b5f64.zip
Merge pull request #513 from ArthurHoaro/hotfix/retrieve-title-issue
Fixes #512: retrieving title didn't match the first closing tag
Diffstat (limited to 'tests/LinkUtilsTest.php')
-rw-r--r--tests/LinkUtilsTest.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/LinkUtilsTest.php b/tests/LinkUtilsTest.php
index c2257590..609a80cb 100644
--- a/tests/LinkUtilsTest.php
+++ b/tests/LinkUtilsTest.php
@@ -15,6 +15,8 @@ class LinkUtilsTest extends PHPUnit_Framework_TestCase
15 $title = 'Read me please.'; 15 $title = 'Read me please.';
16 $html = '<html><meta>stuff</meta><title>'. $title .'</title></html>'; 16 $html = '<html><meta>stuff</meta><title>'. $title .'</title></html>';
17 $this->assertEquals($title, html_extract_title($html)); 17 $this->assertEquals($title, html_extract_title($html));
18 $html = '<html><title>'. $title .'</title>blabla<title>another</title></html>';
19 $this->assertEquals($title, html_extract_title($html));
18 } 20 }
19 21
20 /** 22 /**