Browse Source

Modification to order_by() function.

Nate 6 years ago
parent
commit
a20a54a3ce
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/functions.php

+ 1 - 1
resources/functions.php

@@ -2124,7 +2124,7 @@ function number_pad($number,$n) {
 
 //validate and format order by clause of select statement
 	if (!function_exists('order_by')) {
-		function order_by($col, $dir, $col_default = '') {
+		function order_by($col, $dir, $col_default = '', $dir_default = 'asc') {
 			$col = preg_replace('#[^a-zA-Z0-9-_.]#', '', $col);
 			$dir = strtolower($dir) == 'desc' ? 'desc' : 'asc';
 			if ($col != '') { return ' order by '.$col.' '.$dir.' '; }