Changeset 4896 for trunk/includes/common/functions.php
- Timestamp:
- 05/11/2013 06:10:20 AM (13 years ago)
- File:
-
- 1 edited
-
trunk/includes/common/functions.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/common/functions.php
r4848 r4896 1253 1253 1254 1254 // Join post statuses together 1255 $post_status = "'" . join( "', '", $post_status ) . "'";1255 $post_status = "'" . implode( "', '", $post_status ) . "'"; 1256 1256 1257 1257 // Check for cache and set if needed … … 1296 1296 1297 1297 // Join post statuses together 1298 $post_status = "'" . join( "', '", $post_status ) . "'";1298 $post_status = "'" . implode( "', '", $post_status ) . "'"; 1299 1299 1300 1300 // Check for cache and set if needed … … 1339 1339 1340 1340 // Join post statuses together 1341 $post_status = "'" . join( "', '", $post_status ) . "'";1341 $post_status = "'" . implode( "', '", $post_status ) . "'"; 1342 1342 1343 1343 // Check for cache and set if needed … … 1400 1400 1401 1401 // Join post statuses together 1402 $post_status = "'" . join( "', '", $post_status ) . "'";1402 $post_status = "'" . implode( "', '", $post_status ) . "'"; 1403 1403 1404 1404 // Check for cache and set if needed
Note: See TracChangeset
for help on using the changeset viewer.