Ignore:
Timestamp:
Jan 29, 2010, 12:28:14 AM (14 years ago)
Author:
plg
Message:

feature 1405 added: explicit errors when the "upload" directory is missing or
not writable.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/upload_form/upload.tpl

    r4740 r4789  
    1515</div>
    1616
     17{if count($setup_errors) > 0}
     18<div class="errors">
     19  <ul>
     20  {foreach from=$setup_errors item=error}
     21    <li>{$error}</li>
     22  {/foreach}
     23  </ul>
     24</div>
     25{else}
    1726<form enctype="multipart/form-data" method="post" action="{$F_ACTION}" class="properties">
    1827  <fieldset>
     
    4857  </fieldset>
    4958</form>
     59{/if}
Note: See TracChangeset for help on using the changeset viewer.