clipbucket/upload/install/steps/step_update_0.php

30 lines
1.1 KiB
PHP
Raw Normal View History

2010-02-14 09:25:08 +00:00
<form name="form1" method="post" action="" class="install_form"><div class="content"><h2>Update ClipBucket from <?=the_version()?> to <?=VERSION?></h2><label for="dbprefix">Database Prefix</label>
<input type="text" name="dbprefix" id="dbprefix" value="<? if($_POST['dbprefix']) echo form_val(post('dbprefix')); else echo "cb_";?>">
2010-01-06 18:21:04 +00:00
<?php include("msgs.php") ?>
</div>
<div class="footer" align="right">
2010-02-14 09:25:08 +00:00
2010-01-06 18:21:04 +00:00
<?php
if(count($errors)>0)
{
?>
<input type="hidden" name="step" value="update_0" id="step" >
<input type="submit" name="step0" id="step0" value="Recheck" class="button" >
<input type="submit" name="step0" id="step0" value="Continue Update" class="button_disabled" onClick="return false;">
<?php
}else{
?>
<input type="hidden" name="step" value="update_1" id="step" >
<input type="submit" name="step0" id="step0" value="Recheck" class="button_disabled" onClick="return false;">
<input type="submit" name="step0" id="step0" value="Continue Update" class="button">
<?php
}
?>
2010-02-14 09:25:08 +00:00
2010-01-06 18:21:04 +00:00
2010-01-17 16:47:01 +00:00
</div>
2010-02-14 09:25:08 +00:00
<?=the_installer_footer()?> </form>