summaryrefslogtreecommitdiff
path: root/bridges/FB2Bridge.php
diff options
context:
space:
mode:
Diffstat (limited to 'bridges/FB2Bridge.php')
-rw-r--r--bridges/FB2Bridge.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/bridges/FB2Bridge.php b/bridges/FB2Bridge.php
index 29df755..2faa321 100644
--- a/bridges/FB2Bridge.php
+++ b/bridges/FB2Bridge.php
@@ -72,15 +72,15 @@ class FB2Bridge extends BridgeAbstract {
$pageInfo = $this->getPageInfos($page, $cookies);
if($pageInfo['userId'] === null) {
- echo <<<EOD
+ returnClientError(<<<EOD
Unable to get the page id. You should consider getting the ID by hand, then importing it into FB2Bridge
-EOD;
- die();
+EOD
+ );
} elseif($pageInfo['userId'] == -1) {
- echo <<<EOD
+ returnClientError(<<<EOD
This page is not accessible without being logged in.
-EOD;
- die();
+EOD
+ );
}
}
@@ -95,7 +95,7 @@ EOD;
foreach($html->find('article') as $content) {
$item = array();
- //echo $content; die();
+
preg_match('/publish_time\\\":([0-9]+),/', $content->getAttribute('data-store', 0), $match);
if(isset($match[1]))
$timestamp = $match[1];