Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Commit

Permalink
Fixed links on page.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelchisari authored and The Appleseed Project committed Nov 23, 2010
1 parent 1201aea commit 44fd00e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions components/page/controllers/page.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,16 @@ private function _PrepLink ( ) {
$ownerData = $this->Talk ( 'User', 'Link', array ( 'request' => $this->_Item['Owner'] ) );
$owner = $ownerData['link'];

$Link = $this->_Item['Link'];
$Icon = $this->_Item['Thumb'];
$Title = $this->_Item['Title'];
$Description = $this->_Item['Description'];

$row->Find ( '.thumb-link', 0 )->href = $Link;
$row->Find ( '.title-link', 0 )->href = $Link;
$row->Find ( '.info-link', 0 )->href = $Link;
$row->Find ( '.info-link', 0 )->innertext = $Link;

if ( $Icon )
$row->Find ( '.thumb', 0 )->src = $Icon;
else
Expand Down

0 comments on commit 44fd00e

Please sign in to comment.