Sanitize order and orderby in get_terms()
git-svn-id: https://develop.svn.wordpress.org/trunk@18344 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c3f3ade632
commit
bb7af108f5
@ -1229,6 +1229,8 @@ function &get_terms($taxonomies, $args = '') {
|
|||||||
$orderby = '';
|
$orderby = '';
|
||||||
elseif ( empty($_orderby) || 'id' == $_orderby )
|
elseif ( empty($_orderby) || 'id' == $_orderby )
|
||||||
$orderby = 't.term_id';
|
$orderby = 't.term_id';
|
||||||
|
else
|
||||||
|
$orderby = 't.name';
|
||||||
|
|
||||||
$orderby = apply_filters( 'get_terms_orderby', $orderby, $args );
|
$orderby = apply_filters( 'get_terms_orderby', $orderby, $args );
|
||||||
|
|
||||||
@ -1237,6 +1239,10 @@ function &get_terms($taxonomies, $args = '') {
|
|||||||
else
|
else
|
||||||
$order = '';
|
$order = '';
|
||||||
|
|
||||||
|
$order = strtoupper( $order );
|
||||||
|
if ( '' !== $order && !in_array( $order, array( 'ASC', 'DESC' ) ) )
|
||||||
|
$order = 'ASC';
|
||||||
|
|
||||||
$where = "tt.taxonomy IN ('" . implode("', '", $taxonomies) . "')";
|
$where = "tt.taxonomy IN ('" . implode("', '", $taxonomies) . "')";
|
||||||
$inclusions = '';
|
$inclusions = '';
|
||||||
if ( !empty($include) ) {
|
if ( !empty($include) ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user