Problemas no "Search" - Joomla! Forum - community, help and support
olá, estou com um problema que nao sei como resolver. pesquisei em diversos foruns e nada encontro. É o seguinte: busca meu site apresenta os resultados, só que no final sempre aparece uma mensagem enorme:
/*------------------------------------------------------------------------ # ja nagya joomla 1.5 - version 1.1 - licence owner ja108226 # ------------------------------------------------------------------------ # copyright (c) 2004-2008 j.o.o.m solutions co., ltd. rights reserved. # @license - copyrighted commercial software # author: j.o.o.m solutions co., ltd # websites: http://www.joomlart.com - http://www.joomlancers.com # file may not redistributed in whole or significant part. -------------------------------------------------------------------------*/ // no direct access defined('_jexec') or die('restricted access'); /** * file add template specific chrome pagination rendering. * * pagination_list_footer * input variable $list array offsets: * $list[limit] : int * $list[limitstart] : int * $list[total] : int * $list[limitfield] : string * $list[pagescounter] : string * $list[pageslinks] : string * * pagination_list_render * input variable $list array offsets: * $list[all] * [data] : string * [active] : boolean * $list[start] * [data] : string * [active] : boolean * $list[previous] * [data] : string * [active] : boolean * $list[next] * [data] : string * [active] : boolean * $list[end] * [data] : string * [active] : boolean * $list[pages] * [{page}][data] : string * [{page}][active] : boolean * * pagination_item_active * input variable $item object fields: * $item->base : integer * $item->link : string * $item->text : string * * pagination_item_inactive * input variable $item object fields: * $item->base : integer * $item->link : string * $item->text : string * * gives template designers ultimate control on how pagination rendered. * * note: if override pagination_item_active or pagination_item_inactive must override them both */ function pagination_list_footer($list) { // initialize variables $lang =& jfactory::getlanguage(); $html = "
\n"; if ($lang->isrtl()) { $html .= "\n
".$list['pagescounter']."
"; $html .= $list['pageslinks']; $html .= "\n
".jtext::_('display num').$list['limitfield']."
"; } else { $html .= "\n
".jtext::_('display num').$list['limitfield']."
"; $html .= $list['pageslinks']; $html .= "\n
".$list['pagescounter']."
"; } $html .= "\n"; $html .= "\n
"; return $html; } function pagination_list_render($list) { // initialize variables $lang =& jfactory::getlanguage(); $html = "
* "; $html .= '«
* '; // reverse output rendering right-to-left display if($lang->isrtl()) { $html .= $list['start']['data']; $html .= $list['previous']['data']; $list['pages'] = array_reverse( $list['pages'] ); foreach( $list['pages'] $page ) { if($page['data']['active']) { // $html .= ''; } $html .= $page['data']; if($page['data']['active']) { // $html .= ''; } } $html .= $list['next']['data']; $html .= $list['end']['data']; // $html .= '«'; } else { $html .= $list['start']['data']; $html .= $list['previous']['data']; foreach( $list['pages'] $page ) { if($page['data']['active']) { // $html .= ''; } $html .= $page['data']; if($page['data']['active']) { // $html .= ''; } } $html .= $list['next']['data']; $html .= $list['end']['data']; // $html .= '«'; } $html .= '»
'; $html .= "
# "; return $html; } function pagination_item_active(&$item) { return " link."\" title=\"".$item->text."\">".$item->text."
# "; } function pagination_item_inactive(&$item) { return " ".$item->text."
"; } ?>
como eu poderia retirar isso?
link da pagina em questao:
http://cinemaclassico.com/index.php?sea ... com_search
/*------------------------------------------------------------------------ # ja nagya joomla 1.5 - version 1.1 - licence owner ja108226 # ------------------------------------------------------------------------ # copyright (c) 2004-2008 j.o.o.m solutions co., ltd. rights reserved. # @license - copyrighted commercial software # author: j.o.o.m solutions co., ltd # websites: http://www.joomlart.com - http://www.joomlancers.com # file may not redistributed in whole or significant part. -------------------------------------------------------------------------*/ // no direct access defined('_jexec') or die('restricted access'); /** * file add template specific chrome pagination rendering. * * pagination_list_footer * input variable $list array offsets: * $list[limit] : int * $list[limitstart] : int * $list[total] : int * $list[limitfield] : string * $list[pagescounter] : string * $list[pageslinks] : string * * pagination_list_render * input variable $list array offsets: * $list[all] * [data] : string * [active] : boolean * $list[start] * [data] : string * [active] : boolean * $list[previous] * [data] : string * [active] : boolean * $list[next] * [data] : string * [active] : boolean * $list[end] * [data] : string * [active] : boolean * $list[pages] * [{page}][data] : string * [{page}][active] : boolean * * pagination_item_active * input variable $item object fields: * $item->base : integer * $item->link : string * $item->text : string * * pagination_item_inactive * input variable $item object fields: * $item->base : integer * $item->link : string * $item->text : string * * gives template designers ultimate control on how pagination rendered. * * note: if override pagination_item_active or pagination_item_inactive must override them both */ function pagination_list_footer($list) { // initialize variables $lang =& jfactory::getlanguage(); $html = "
\n"; if ($lang->isrtl()) { $html .= "\n
".$list['pagescounter']."
"; $html .= $list['pageslinks']; $html .= "\n
".jtext::_('display num').$list['limitfield']."
"; } else { $html .= "\n
".jtext::_('display num').$list['limitfield']."
"; $html .= $list['pageslinks']; $html .= "\n
".$list['pagescounter']."
"; } $html .= "\n"; $html .= "\n
"; return $html; } function pagination_list_render($list) { // initialize variables $lang =& jfactory::getlanguage(); $html = "
* "; $html .= '«
* '; // reverse output rendering right-to-left display if($lang->isrtl()) { $html .= $list['start']['data']; $html .= $list['previous']['data']; $list['pages'] = array_reverse( $list['pages'] ); foreach( $list['pages'] $page ) { if($page['data']['active']) { // $html .= ''; } $html .= $page['data']; if($page['data']['active']) { // $html .= ''; } } $html .= $list['next']['data']; $html .= $list['end']['data']; // $html .= '«'; } else { $html .= $list['start']['data']; $html .= $list['previous']['data']; foreach( $list['pages'] $page ) { if($page['data']['active']) { // $html .= ''; } $html .= $page['data']; if($page['data']['active']) { // $html .= ''; } } $html .= $list['next']['data']; $html .= $list['end']['data']; // $html .= '«'; } $html .= '»
'; $html .= "
# "; return $html; } function pagination_item_active(&$item) { return " link."\" title=\"".$item->text."\">".$item->text."
# "; } function pagination_item_inactive(&$item) { return " ".$item->text."
"; } ?>
como eu poderia retirar isso?
link da pagina em questao:
http://cinemaclassico.com/index.php?sea ... com_search
olá amigo...
teria como postar o arquivo php de busca para olharmos?
abraço
teria como postar o arquivo php de busca para olharmos?
abraço
Comments
Post a Comment