- refactoring

- adaptation of the URL for searching associated keywords to the new search
  URL string


git-svn-id: http://piwigo.org/svn/trunk@511 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
z0rglub 2004-09-01 21:56:24 +00:00
parent 2dbc66da3b
commit fb5b21cbde

View file

@ -583,21 +583,26 @@ $template->assign_block_vars('info_line', array(
'VALUE'=>$filesize.' KB'
));
// keywords
if ( !empty($picture['current']['keywords']))
if (!empty($picture['current']['keywords']))
{
$keywords = explode( ',', $picture['current']['keywords'] );
$keywords = explode(',', $picture['current']['keywords']);
$content = '';
$url = PHPWG_ROOT_PATH.'category.php?cat=search';
$url.= '&mode=OR&search=';
foreach ( $keywords as $i => $keyword ) {
$local_url = add_session_id( $url.$keyword );
if ( $i > 0 ) $content.= ',';
$url = PHPWG_ROOT_PATH.'category.php?cat=search&search=keywords:';
foreach ($keywords as $i => $keyword)
{
$local_url = add_session_id($url.$keyword);
if ($i > 0)
{
$content.= ',';
}
$content.= '<a href="'.$local_url.'">'.$keyword.'</a>';
}
$template->assign_block_vars('info_line', array(
'INFO'=>$lang['keywords'],
'VALUE'=>$content
));
$template->assign_block_vars(
'info_line',
array(
'INFO'=>$lang['keywords'],
'VALUE'=>$content
));
}
// number of visits
$template->assign_block_vars(