clipbucket/upload/cb_install/modes/upgrade.php
Arslan Hassan b3d0a08de6 Fixed : "video does not exist" while uploading error
Fixed : Pages order and display
Fixed : ClipBucket installer
Fixed : Collection does not show if objects count == 1
Fixed : Group name single quote error
Update : language code error
Update : Language phrases and typos
Fixed  : Edit collection
2011-05-20 12:35:38 +00:00

16 lines
No EOL
803 B
PHP

<?php
if(userid() || $old_version < 2.3 ):
?>
<p>You are now going to upgrade from <?=$old_version?> to <?=VERSION?>, please read <strong><a href="http://docs.clip-bucket.com/clipbucket-docs/clipbucket-installation">this documentation</a></strong> for further info and help, please click continue upgrade </p>
<form name="installation" method="post" id="installation">
<input type="hidden" name="mode" value="permission" />
<div style="padding:10px 0px" align="right"><?=button('Continue to upgrade!',' onclick="$(\'#installation\').submit()" ');?></div>
</form>
<?php
else:
?>
<div class="errorDiv br5px" id="dbresult" style="">
<?=msg_arr(array('err'=>'Please first login as Website adminstrator by going to admin_area and then try upgrading your website'))?></div><?php
endif;
?>