Collections functions
General functions
Node functions
Render functions
Theme permission functions
User functions
Resource functions

check_order_by_in_table_joins()

Description

If a "fieldX" order_by is used, check it's a valid value

Parameters

ColumnTypeDefaultDescription
$order_by
string string of order by

Location

include/search_functions.php lines 3232 to 3240

Definition

 
function check_order_by_in_table_joins($order_by)
    {
    global 
$lang;

    if (
substr($order_by,0,5)=="field" && !in_array(substr($order_by,5),get_resource_table_joins()))
        {
        exit(
$lang['error_invalid_input'] . ":- <pre>order_by : " escape($order_by) . "</pre>");
        }
    }

This article was last updated 19th March 2024 02:35 Europe/London time based on the source file dated 15th March 2024 17:00 Europe/London time.