diff options
author | VirtualTam <virtualtam@flibidi.net> | 2016-03-14 21:29:19 +0100 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2016-03-14 21:29:19 +0100 |
commit | 5816801b15e1a0e53f87aa48267243bff44b5f64 (patch) | |
tree | 3be406a48569c02a17584de99982dedd25627830 /application | |
parent | 890afc32f744859d11b97eb26ed5c030af9b4145 (diff) | |
parent | 68ea1d2b30db8ab295e47e9ac5f6c8e81676caf7 (diff) | |
download | Shaarli-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 'application')
-rw-r--r-- | application/LinkUtils.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/LinkUtils.php b/application/LinkUtils.php index 26dd6b67..d8dc8b5e 100644 --- a/application/LinkUtils.php +++ b/application/LinkUtils.php | |||
@@ -9,7 +9,7 @@ | |||
9 | */ | 9 | */ |
10 | function html_extract_title($html) | 10 | function html_extract_title($html) |
11 | { | 11 | { |
12 | if (preg_match('!<title>(.*)</title>!is', $html, $matches)) { | 12 | if (preg_match('!<title>(.*?)</title>!is', $html, $matches)) { |
13 | return trim(str_replace("\n", ' ', $matches[1])); | 13 | return trim(str_replace("\n", ' ', $matches[1])); |
14 | } | 14 | } |
15 | return false; | 15 | return false; |