mirror of
https://github.com/e107inc/e107.git
synced 2025-08-13 18:14:26 +02:00
Remove some references to deprecated functions/methods.
This commit is contained in:
@@ -60,9 +60,9 @@ class list_download
|
||||
$rowheading = $this->parent->parse_heading($row['download_name']);
|
||||
$record['icon'] = $bullet;
|
||||
$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']) : "");
|
||||
$record['author'] = (vartrue($this->parent->settings['author']) ? $row['download_author'] : "");
|
||||
$record['category'] = (vartrue($this->parent->settings['category']) ? "<a href='".e_BASE."download.php?list.".$row['download_category_id']."'>".$row['download_category_name']."</a>" : "");
|
||||
$record['date'] = (vartrue($this->parent->settings['date']) ? $this->parent->getListDate($row['download_datestamp']) : "");
|
||||
$record['info'] = "";
|
||||
|
||||
$list_data[] = $record;
|
||||
|
Reference in New Issue
Block a user