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
|
||||
*/
|
||||
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.
|
||||
$all_the_cool_cats = get_categories( array(
|
||||
'fields' => 'ids',
|
||||
|
|
Reference in New Issue