After successful conversion, I must edit again to appear in Uncategorized....
correct.
Pages shouldn't (currently) have a category, sort of like extras.
So when converting from pages to center (article) the category should not be present, which means that it is a second edit to assign category. This is to be expected.
However, I'm still having issues, even with the change above... it started playing up again after I converted page to article, assigned category, then converted back to page, then back to article...
(I'm a tad off the wall today... why anyone would do the above is byond me, but still)
so, the following seems to be working...
in same place in processing()
$category = $_POST['position']==3 &&$_POST['define_category']>0?0:$_POST['define_category'];
then in case 'admin_article':
both the lines that start like
case($position==1 &&
need to have the start altered to
case($position==1 && $category>0 &&
This will bypass the check_if_unique routine, making category 0 a safe repository for converted pages.
As for viewing an article in this category, this needs to be looked at.