Changed error messages so that the page would display first, then show the error message on top of it, instead of showing the error message on top of a blank screen.
This commit is contained in:
parent
174f9798da
commit
49187026cb
|
@ -1,4 +1,11 @@
|
|||
<div class="copyright">{$UI_VERSION} ©2006 <a href="http://www.mdlf.org" target="_blank">MDLF</a> - maintained and distributed under GNU/GPL by <a href="http://www.campware.org" target="_blank">CAMPWARE</a></div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
{UIBROWSER->getAlertMsg assign='alertMsg'}
|
||||
{if $alertMsg}
|
||||
alert('{$alertMsg}');
|
||||
{/if}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -268,7 +268,7 @@ DIV.blockquote
|
|||
|
||||
<H2>Troubleshooting</H2>
|
||||
<H3>File Upload</H3>
|
||||
<P>If you encounter the message <i>The uploadet filer is bigger than allowed in system settings.</i> most probably the file size is bigger than
|
||||
<P>If you encounter the message <i>The uploaded file is bigger than allowed in system settings.</i> most probably the file size is bigger than
|
||||
allowed in the PHP system settings of the machine you are running
|
||||
Campcaster on. Please increase the settings of
|
||||
"upload_max_filesize" and "post_max_size" in
|
||||
|
|
|
@ -110,10 +110,6 @@
|
|||
}
|
||||
{/literal}
|
||||
|
||||
{UIBROWSER->getAlertMsg assign='alertMsg'}
|
||||
{if $alertMsg}
|
||||
alert('{$alertMsg}');
|
||||
{/if}
|
||||
|
||||
|
||||
</script>
|
||||
|
|
Loading…
Reference in New Issue