By gökhan on Sunday, 05 January 2014
Posted in General Issues
Replies 2
Likes 0
Views 515
Votes 0
in create.title.php file (easyblog app)

*/
defined( '_JEXEC' ) or die( 'Unauthorized Access' );
?>
<a href="/<?php echo $actor->getPermalink();?>"><?php echo $actor->getName();?></a> created a new blog post
<a href="/<?php echo $permalink;?>"><?php echo $blog->title;?></a>.



must be changed to

defined( '_JEXEC' ) or die( 'Unauthorized Access' );
?>
<a href="/<?php echo $actor->getPermalink();?>"><?php echo $actor->getName();?></a>
<?php echo JText::_( 'APP_BLOG_STREAM_CREATED_BLOG_POST' );?>
<a href="/<?php echo $permalink;?>"><?php echo $blog->title;?></a>.
and in create.comment.title.php

 *defined( '_JEXEC' ) or die( 'Unauthorized Access' );
?>
<a href="<?php echo $actor->getPermalink();?>"><?php echo $actor->getName();?></a> commented on the blog post,
<a href="<?php echo EasyBlogRouter::_( 'index.php?option=com_easyblog&view=entry&id=' . $blog->id );?>"><?php echo $blog->title;?></a>.


must be change to


*defined( '_JEXEC' ) or die( 'Unauthorized Access' );
?>
<a href="<?php echo $actor->getPermalink();?>"><?php echo $actor->getName();?></a>
<?php echo JText::_( 'APP_COMMENTS_COMMENTED_ON_BLOG_POST' );?>
<a href="<?php echo EasyBlogRouter::_( 'index.php?option=com_easyblog&view=entry&id=' . $blog->id );?>"><?php echo $blog->title;?></a>.


NOTE add this "APP_COMMENTS_COMMENTED_ON_BLOG_POST" to en-GB.plg_app_usr_blog.ini
·
Sunday, 05 January 2014 07:53
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

I am really sorry for the delay of this reply as it is a weekend for us here. These issues are actually fixed in the latest version of the blog app. You can download it from http://stackideas.com/apps
·
Sunday, 05 January 2014 14:18
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post