mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-17 18:29:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@11627 201d5d3c-b55e-5fd7-737f-ddc643e51545
47 lines
1.9 KiB
HTML
47 lines
1.9 KiB
HTML
<load target="js/install_admin.js" />
|
|
<include target="header.html" />
|
|
<div id="body">
|
|
<include target="progress_menu.html" />
|
|
<div id="content">
|
|
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<form action="./" method="post">
|
|
<input type="hidden" name="act" value="procConfigSetting" />
|
|
<ul class="form formXe">
|
|
<li>
|
|
<input name="use_rewrite" value="Y" <!--@if(function_exists('apache_get_modules')&&in_array('mod_rewrite',apache_get_modules()))-->checked="checked"<!--@end--> type="checkbox" class="iCheck" id="rewrite" /> <label for="rewrite">{$lang->use_rewrite}</label>
|
|
<p>{$lang->about_rewrite}</p>
|
|
</li>
|
|
<li>
|
|
<div class="select open" style="width:540px;">
|
|
<span class="ctrl"><span class="arrow"></span></span>
|
|
<div class="myValue"></div>
|
|
<div class="iList">
|
|
<ul>
|
|
<!--@foreach($time_zone as $key => $val)-->
|
|
<li><input name="time_zone" id="{$key}" class="option" type="radio" value="{$key}" <!--@if($key==date('O'))-->checked="checked"<!--@end--> /><label for="{$key}">{$val}</label></li>
|
|
<!--@end-->
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<p>{$lang->about_time_zone}</p>
|
|
</li>
|
|
</ul>
|
|
<div class="ibtnArea">
|
|
<div class="fLeft">
|
|
<span class="ibtn icon"><span class="back"></span> <a href="#" onclick="document.backForm.submit();">{$lang->cmd_back}</a></span>
|
|
</div>
|
|
<div class="fRight">
|
|
<span class="ibtn icon"><span class="check"></span> <input name="" type="submit" value="{$lang->cmd_next}" /></span>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<form name="backForm" method="post" action="./">
|
|
<input type="hidden" name="module" value="{$module}" />
|
|
<input type="hidden" name="act" value="dispInstallDBForm" />
|
|
<input type="hidden" name="db_type" value="{$db_type}" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<include target="footer.html" />
|