Skip to content

Commit

Permalink
Bug #125513 fix: Class 'EasyBlogRouter' not found error message after…
Browse files Browse the repository at this point in the history
… updating EasyBlog to 5.2.3
  • Loading branch information
UmeshBhosale committed Apr 17, 2018
1 parent 5d0fed1 commit fed3203
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion easyblog/easyblog.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<extension version="2.5.0" type="plugin" group="api" method="upgrade">
<name>Api - Easyblog</name>
<version>1.8.5</version>
<version>2.2.0</version>
<creationDate>10/11/2014</creationDate>
<author>Techjoomla</author>
<authorEmail>[email protected]</authorEmail>
Expand Down
4 changes: 2 additions & 2 deletions easyblog/helper/simpleschema.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function mapPost($row, $strip_tags='', $text_length=0, $skip=array()) {
$item->category->categoryid = $category->id;
$item->category->title = $category->title;

$item->url = JURI::root() . trim(EasyBlogRouter::_('index.php?option=com_easyblog&view=entry&id=' . $blog->id ), '/');
$item->url = JURI::root() . trim(EBR::_('index.php?option=com_easyblog&view=entry&id=' . $blog->id ), '/');

// Tags
$modelPT = EasyBlogHelper::getModel( 'PostTag' );
Expand Down Expand Up @@ -207,7 +207,7 @@ public function mapPost($row, $strip_tags='', $text_length=0, $skip=array()) {
$item->category->categoryid = $category->id;
$item->category->title = $category->title;

$item->url = JURI::root() . trim(EasyBlogRouter::_('index.php?option=com_easyblog&view=entry&id=' . $blog->id ), '/');
$item->url = JURI::root() . trim(EBR::_('index.php?option=com_easyblog&view=entry&id=' . $blog->id ), '/');

// Tags
$modelPT = EasyBlogHelper::getModel( 'PostTag' );
Expand Down

0 comments on commit fed3203

Please sign in to comment.