Changeset 10278
- Timestamp:
- 12/30/2008 10:32:58 PM (17 years ago)
- File:
-
- 1 edited
-
branches/2.7/wp-includes/link-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/2.7/wp-includes/link-template.php
r10240 r10278 1262 1262 $page = get_query_var('cpage'); 1263 1263 1264 if ( !$page )1265 $page = 1;1266 1267 1264 $nextpage = intval($page) + 1; 1268 1265 … … 1308 1305 $page = get_query_var('cpage'); 1309 1306 1310 if ( !$page ) 1311 $page = 1; 1312 1313 if ( $page <= 1 ) 1307 if ( intval($page) <= 1 ) 1314 1308 return; 1315 1309
Note: See TracChangeset
for help on using the changeset viewer.