FIND in /modules/gallery/index.php (function section_view):
switch($mkportals->input['order']) {
case '1':
$order = "ORDER BY `titolo`";
break;
default:
$order = "ORDER BY `id` DESC";
break;
}
REPLACE WITH: //ORDER BY title
switch($mkportals->input['order']) {
case '1':
//$order = "ORDER BY `titolo`";
$order = "ORDER BY `id` DESC";
break;
default:
//$order = "ORDER BY `id` DESC";
$order = "ORDER BY `titolo`";
break;
}
FIND: $sort = "
<select name="order" size="1" onchange="selChoe(this, '$idev')" class="bgselect">
<option value="0">{$mklib->lang['ga_orderby']}</option>n
<option value="1">{$mklib->lang['ga_nameimg']}</option>n
<option value="2">{$mklib->lang['ga_dateins']}</option>n
</select>
";
REPLACE WITH: $sort = "
<select name="order" size="1" onchange="selChoe(this, '$idev')" class="bgselect">
<option value="0">{$mklib->lang['ga_orderby']}</option>n
<option value="2">{$mklib->lang['ga_nameimg']}</option>n
<option value="1">{$mklib->lang['ga_dateins']}</option>n
</select>
";













