forked from mirror/_s
Merge pull request #1099 from jrfnl/feature/fix-code-obfuscation
Code obfuscation: Fix assignment within a condition
This commit is contained in:
commit
923d8f1f6a
|
@ -84,7 +84,8 @@ endif;
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
function _s_categorized_blog() {
|
function _s_categorized_blog() {
|
||||||
if ( false === ( $all_the_cool_cats = get_transient( '_s_categories' ) ) ) {
|
$all_the_cool_cats = get_transient( '_s_categories' );
|
||||||
|
if ( false === $all_the_cool_cats ) {
|
||||||
// Create an array of all the categories that are attached to posts.
|
// Create an array of all the categories that are attached to posts.
|
||||||
$all_the_cool_cats = get_categories( array(
|
$all_the_cool_cats = get_categories( array(
|
||||||
'fields' => 'ids',
|
'fields' => 'ids',
|
||||||
|
|
Reference in New Issue