deleted WikiPostHandler

This commit is contained in:
tmont 2008-10-20 03:58:01 +00:00
parent 9ffd4911c1
commit 3a98f95efd

View File

@ -1,41 +0,0 @@
<?php
/**
* WikiPostHandler
*
* @package Panacea
* @subpackage Wiki
* @author Tommy Montgomery
* @since 2008-10-18
*/
/** Bootstraps the NowhereConcave framework */
require_once 'NowhereConcave/bootstrap.php';
/**
* Object for handling wiki-related POST requests
*
* @package Panacea
* @subpackage Wiki
* @author Tommy Montgomery
* @since 2008-10-18
*/
class WikiPostHandler extends PostHandler {
/**
* {@inheritdoc}
*
* @author Tommy Montgomery
* @since 2008-10-18
*
* @return mixed
*/
public function execute() {
if (isset($this->data['wikisource'])) {
}
}
}
?>