2023-05-16 10:50:42 +08:00

17 lines
296 B
PHP

<?php
helper::importControl('index');
class myindex extends index
{
/**
* The index page of whole zentao system.
*
* @param string $open
* @access public
* @return void
*/
public function index($open = '')
{
return parent::index($open);
}
}