Changeset 8944 for trunk/wp-admin/edit-link-categories.php
- Timestamp:
- 09/21/2008 08:41:25 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-link-categories.php
r8923 r8944 96 96 97 97 <?php 98 $pagenum = absint( $_GET['pagenum'] );98 $pagenum = isset( $_GET['pagenum'] ) ? absint( $_GET['pagenum'] ) : 0; 99 99 if ( empty($pagenum) ) 100 100 $pagenum = 1; 101 if( ! $catsperpage|| $catsperpage < 0 )101 if( ! isset( $catsperpage ) || $catsperpage < 0 ) 102 102 $catsperpage = 20; 103 103
Note: See TracChangeset
for help on using the changeset viewer.