1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-21 05:41:58 +02:00

bugfix #4478 (title tag removed from link)

This commit is contained in:
lisa
2009-01-28 08:48:14 +00:00
parent 868d72031b
commit 78999f6a2f
11 changed files with 70 additions and 35 deletions

View File

@@ -9,8 +9,8 @@
* Comment e_list Handler
*
* $Source: /cvs_backup/e107_0.8/e107_plugins/list_new/section/list_comment.php,v $
* $Revision: 1.2 $
* $Date: 2009-01-27 21:34:02 $
* $Revision: 1.3 $
* $Date: 2009-01-28 08:48:14 $
* $Author: lisa_ $
*
*/
@@ -61,11 +61,11 @@ class list_comment
$record['icon'] = $bullet;
if($row['comment_url'])
{
$record['heading'] = "<a href='".$row['comment_url']."' title='".$row['comment_title']."'>".$this->parent->e107->tp->toHTML($rowheading, TRUE)."</a>";
$record['heading'] = "<a href='".$row['comment_url']."'>".$this->parent->e107->tp->toHTML($rowheading, true)."</a>";
}
else
{
$record['heading'] = $this->parent->e107->tp->toHTML($rowheading, TRUE);
$record['heading'] = $this->parent->e107->tp->toHTML($rowheading, true);
}
$category = '';
if(varsettrue($this->parent->settings['category']))

View File

@@ -9,8 +9,8 @@
* Download e_list Handler
*
* $Source: /cvs_backup/e107_0.8/e107_plugins/list_new/section/list_download.php,v $
* $Revision: 1.3 $
* $Date: 2009-01-27 21:34:02 $
* $Revision: 1.4 $
* $Date: 2009-01-28 08:48:14 $
* $Author: lisa_ $
*
*/
@@ -59,7 +59,7 @@ class list_download
$record = array();
$rowheading = $this->parent->parse_heading($row['download_name']);
$record['icon'] = $bullet;
$record['heading'] = "<a href='".e_BASE."download.php?view.".$row['download_id']."' title='".$row['download_name']."'>".$rowheading."</a>";
$record['heading'] = "<a href='".e_BASE."download.php?view.".$row['download_id']."'>".$rowheading."</a>";
$record['author'] = (varsettrue($this->parent->settings['author']) ? $row['download_author'] : "");
$record['category'] = (varsettrue($this->parent->settings['category']) ? "<a href='".e_BASE."download.php?list.".$row['download_category_id']."'>".$row['download_category_name']."</a>" : "");
$record['date'] = (varsettrue($this->parent->settings['date']) ? $this->parent->getListDate($row['download_datestamp']) : "");

View File

@@ -9,8 +9,8 @@
* Members e_list Handler
*
* $Source: /cvs_backup/e107_0.8/e107_plugins/list_new/section/list_members.php,v $
* $Revision: 1.4 $
* $Date: 2009-01-27 21:34:02 $
* $Revision: 1.5 $
* $Date: 2009-01-28 08:48:14 $
* $Author: lisa_ $
*
*/
@@ -48,7 +48,7 @@ class list_members
$record = array();
$rowheading = $this->parent->parse_heading($row['user_name']);
$record['icon'] = $bullet;
$record['heading'] = (USER ? "<a href='".e_BASE."user.php?id.".$row['user_id']."' title='".$row['user_name']."'>".$rowheading."</a>" : $rowheading);
$record['heading'] = (USER ? "<a href='".e_BASE."user.php?id.".$row['user_id']."'>".$rowheading."</a>" : $rowheading);
$record['category'] = '';
$record['author'] = '';
$record['date'] = (varsettrue($this->parent->settings['date']) ? $this->parent->getListDate($row['user_join']) : "");

View File

@@ -9,8 +9,8 @@
* News e_list Handler
*
* $Source: /cvs_backup/e107_0.8/e107_plugins/list_new/section/list_news.php,v $
* $Revision: 1.2 $
* $Date: 2009-01-27 21:34:02 $
* $Revision: 1.3 $
* $Date: 2009-01-28 08:48:14 $
* $Author: lisa_ $
*
*/
@@ -61,7 +61,7 @@ class list_news
$record = array();
$record['icon'] = $bullet;
$record['heading'] = "<a href='".e_BASE."news.php?item.".$row['news_id']."' title='".$rowheading."'>".$rowheading."</a>";
$record['heading'] = "<a href='".e_BASE."news.php?item.".$row['news_id']."'>".$rowheading."</a>";
$record['author'] = '';
if(varsettrue($this->parent->settings['author']))