Fix typo in textpattern importer. Fixes #7529 for trunk.

git-svn-id: http://svn.automattic.com/wordpress/trunk@8658 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2008-08-16 20:41:20 +00:00
parent e84d70122a
commit 2843c01b3d
1 changed files with 1 additions and 1 deletions

View File

@ -356,7 +356,7 @@ class Textpattern_Import {
$category1 = get_category_by_slug($Category1);
$category1 = $category1->term_id;
$category2 = get_category_by_slug($Category2);
$category2 = $category1->term_id;
$category2 = $category2->term_id;
if($cat1 = $category1) { $cats[1] = $cat1; }
if($cat2 = $category2) { $cats[2] = $cat2; }