33 lines
870 B
PHP
33 lines
870 B
PHP
<?php
|
|
/**
|
|
* The html template file of execute method of upgrade module of ZenTaoMS.
|
|
*
|
|
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package upgrade
|
|
* @version $Id$
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.lite.html.php';?>
|
|
<style>body{background:white}</style>
|
|
<div class='yui-d0' style='margin-top:50px'>
|
|
<table align='center' class='table-5 f-14px'>
|
|
<caption><?php echo $lang->upgrade->$result;?></caption>
|
|
<tr>
|
|
<td>
|
|
<?php
|
|
if($result == 'fail')
|
|
{
|
|
echo nl2br(join('\n', $errors));
|
|
}
|
|
else
|
|
{
|
|
echo html::linkButton($lang->upgrade->tohome, 'index.php');
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|