Trim extra whitespace from category name

This commit is contained in:
Nathan Gray 2011-03-16 15:53:11 +00:00
parent 09226f0e17
commit d02eec55fb

View File

@ -161,6 +161,7 @@ class importexport_helper_functions {
$cat_names = is_array( $_cat_names ) ? $_cat_names : explode( ',', $_cat_names );
foreach ( $cat_names as $cat_name ) {
$cat_name = trim($cat_name);
if ( $cat_name == '' ) continue;
// Handle any IDs that slip in
if ( is_numeric($cat_name) && categories::id2name((int)$cat_name)) {