]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - inc/poche/Url.class.php
Add SHAARLI support to view template
[github/wallabag/wallabag.git] / inc / poche / Url.class.php
old mode 100644 (file)
new mode 100755 (executable)
index 77ed539..3c74fb4
@@ -65,13 +65,14 @@ class Url
                 $tidy = tidy_parse_string($html, array(), 'UTF8');
                 $tidy->cleanRepair();
 
-                               //Warning: tidy might fail so, ensure there is still a content
-                               $body = $tidy->body();
+                //Warning: tidy might fail so, ensure there is still a content
+                $body = $tidy->body();
 
-                               //hasChildren does not seem to work, just check the string
-                               //returned (and do not forget to clean the white spaces)
-                               if (preg_replace('/\s+/', '', $body->value) !== "<body></body>")
-                                       $html = $tidy->value;
+                //hasChildren does not seem to work, just check the string
+                //returned (and do not forget to clean the white spaces)
+                if (preg_replace('/\s+/', '', $body->value) !== "<body></body>") {
+                    $html = $tidy->value;
+                }
             } 
 
             $parameters = array();
@@ -84,7 +85,7 @@ class Url
                 if($readability->init())
                 {
                     $content = $readability->articleContent->innerHTML;
-                    $parameters['title'] = $readability->articleTitle->innerHTML;
+                    $parameters['title'] = ($readability->articleTitle->innerHTML != '' ? $readability->articleTitle->innerHTML : _('Untitled'));
                     $parameters['content'] = $content;
 
                     return $parameters;