diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-04-08 19:42:11 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-04-08 19:42:11 +0000 |
commit | 86a90feddf8a9f6918bac25c52f31f1f5d6e17c7 (patch) | |
tree | 2c631d2c10db4f619737fe75841243bebcaf6f2f /picture.php | |
parent | a892e6abf95a23219d76971890011646f7efeef4 (diff) |
merge -r1134 from branches/branch-1_6 into trunk
git-svn-id: http://piwigo.org/svn/trunk@1135 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | picture.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/picture.php b/picture.php index 988859546..43ac99f55 100644 --- a/picture.php +++ b/picture.php @@ -630,7 +630,7 @@ if (!empty($picture['current']['date_creation'])) 'chronology_date' => explode('-', $picture['current']['date_creation']) ) ); - $infos['INFO_CREATION_DATE'] = '<a href="'.$url.'">'.$val.'</a>'; + $infos['INFO_CREATION_DATE'] = '<a href="'.$url.'" rel="nofollow">'.$val.'</a>'; } else { @@ -647,7 +647,7 @@ $url = make_index_URL( 'chronology_date'=>explode('-', substr($picture['current']['date_available'],0,10)) ) ); -$infos['INFO_POSTED_DATE'] = '<a href="'.$url.'">'.$val.'</a>'; +$infos['INFO_POSTED_DATE'] = '<a href="'.$url.'" rel="nofollow">'.$val.'</a>'; // size in pixels if ($picture['current']['is_picture']) @@ -699,7 +699,7 @@ $result = pwg_query($query); if (mysql_num_rows($result) > 0) { $tags = array(); - + while ($row = mysql_fetch_array($result)) { array_push( |