Make category name->id translator able to handle any IDs that are passed

This commit is contained in:
Nathan Gray 2011-03-04 18:53:02 +00:00
parent 5344d0a0ae
commit a47732d530

View File

@ -148,6 +148,11 @@ class importexport_helper_functions {
$cat_names = is_array( $_cat_names ) ? $_cat_names : explode( ',', $_cat_names );
foreach ( $cat_names as $cat_name ) {
if ( $cat_name == '' ) continue;
// Handle any IDs that slip in
if ( is_numeric($cat_name) && categories::id2name((int)$cat_name)) {
$cat_ids[] = (int)$cat_name;
continue;
}
if ( ( $cat_id = $cats->name2id( $cat_name ) ) == 0 ) {
$cat_id = $cats->add( array(
'name' => $cat_name,