Помогите изменить порядок сортировки выводимых записей
<?php
if( ! defined( 'DATALIFEENGINE' ) ) {
die( "Hacking attempt!" );
}
if ($cstart) {
$cstart = $cstart - 1;
$cstart = $cstart * $config['news_number'];
}
$url_page = $config['http_home_url'] . "datex/" . urlencode($_GET['datex']);
$newsmodule = true;
$datex = $_GET['datex'];
$custom_template = "shortstory";
$sql_select = "SELECT SQL_CALC_FOUND_ROWS * FROM ". PREFIX ."_post WHERE datex LIKE '%$datex%' LIMIT " . $cstart . "," . $config['news_number'];
$sql_count = "SELECT FOUND_ROWS() as count";
$allow_active_news = TRUE;
include "show.short.php";
$db->free( $sql_result );
?>