<?php /**
* Display pages without category of the wiki.
*
* This action checks user write privileges and displays without categories pages.
*
* @package Actions
* @name uncategory
*
* @author {@link http://decipher.blackhole.cl/ Rodrigo Ramirez Norambuena}
*
* @output a list of pages without category
*
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License
*
*/
define('PAGE_HEADING',"Uncategory Pages"); define('TEXT_CAPTION',"This is a list of pages without category on the wiki so that your can categorized");
$str = 'The following '.$pagecount.$str; if(!$compact)$str .= '</tr></table>'; else$str .= '</ul></div>'; } else$str = 'Not exists pages without category to be written or modify';
if($count==0){ $str = 'Not exists pages without category to be written or modify'; } print($str); } ?>