Make WordPress Core


Ignore:
Timestamp:
09/21/2008 08:41:25 PM (17 years ago)
Author:
westi
Message:

Notice fixes see #7509 props DD32 and jacobsantos.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-link-categories.php

    r8923 r8944  
    9696
    9797<?php
    98 $pagenum = absint( $_GET['pagenum'] );
     98$pagenum = isset( $_GET['pagenum'] ) ? absint( $_GET['pagenum'] ) : 0;
    9999if ( empty($pagenum) )
    100100    $pagenum = 1;
    101 if( !$catsperpage || $catsperpage < 0 )
     101if( ! isset( $catsperpage ) || $catsperpage < 0 )
    102102    $catsperpage = 20;
    103103
Note: See TracChangeset for help on using the changeset viewer.