Move busui to seperate repository
[bus.git] / options_errors.tpl
1 <h2><?php echo $headline;?></h2>
2
3 <form method="post">
4
5 <fieldset name="owa-error-options" class="options">
6 <legend>Error Logging</legend>
7
8 <DIV class="setting">
9 Logging Mode:
10 <SELECT NAME="<?php echo $this->getNs();?>config[error_handler]">
11
12 <OPTION VALUE="production" <?php if ($config['error_handler'] == 'production'):?>SELECTED<?php endif;?>>
13 Production (Errors logged to file)</OPTION>
14 <OPTION VALUE="development" <?php if ($config['error_handler'] == 'development'):?>SELECTED<?php endif;?>>
15 Development (Debug and Error messages logged to file)</OPTION>
16 </SELECT>
17
18 </DIV>
19
20 </fieldset>
21
22 <BUTTON type="submit" name="<?php echo $this->getNs();?>action" value="base.optionsUpdate">Update Configuration</BUTTON>
23 <BUTTON type="submit" name="<?php echo $this->getNs();?>action" value="base.optionsReset">Reset to Default Values</BUTTON>
24 </form>