Joomla.it Forum

Joomla! 1.0.x (versione con supporto terminato) => Le voci di Joomla.it (solo per versione Joomla 1.0.x) => : kefy 01 May 2008, 11:09:57

: weblink in ordine alfabetico
: kefy 01 May 2008, 11:09:57
ciaO a tutti!
Qualcuno sa se e' possibile visualizzare i weblink in ordine alfabetico??
: Re: weblink in ordine alfabetico
: kefy 13 May 2008, 18:47:03
ho trovato la soluzione... ve la posto:

Bisogna cercare il file components/com_weblinks/weblinks.php

e sostituire:
$rows = array();
    if ($catid) {
        $database->setQuery( "SELECT id, url, title, description, date, hits FROM #__weblinks"
        . "\nWHERE catid = '$catid' AND published='1' AND archived=0"
        . "\nORDER BY ordering"
        ); 

con:
$rows = array();
    if ($catid) {
        $database->setQuery( "SELECT id, url, title, description, date, hits FROM #__weblinks"
        . "\nWHERE catid = '$catid' AND published='1' AND archived=0"
        . "\nORDER BY title"
        ); 

Grande cosa!!!