Skip to content

Commit

Permalink
Fix import file drop down on import export page. (#525)
Browse files Browse the repository at this point in the history
Fixes #524.
  • Loading branch information
Michael Howitz committed Mar 8, 2019
1 parent 0d51e66 commit 4cafb99
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ https://github.com/zopefoundation/Zope/blob/4.0a6/CHANGES.rst
Fixes
+++++

- Fix import file drop down on import export page.
(`#524 <https://github.com/zopefoundation/Zope/issues/524>`_)

- Resurrected copyright and license page
(`#482 <https://github.com/zopefoundation/Zope/issues/482>`_)

Expand Down
6 changes: 3 additions & 3 deletions src/OFS/dtml/importExport.dtml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
them to a different Zope installation. You can either choose
to download the export file to your local machine, or save it
in the <code>var</code> directory of your Zope installation
on the server.
on the server.
<strong>Note:</strong>
Zope can export/import objects in a binary format (called
ZEXP). The ZEXP format is the officially supported export/import
Expand Down Expand Up @@ -69,7 +69,7 @@
<div class="col-sm-9 col-md-10">
<select class="form-control" id="file" name="file">
<dtml-in "list_imports()"
>option value="<dtml-var sequence-item>"><dtml-var sequence-item></option>
><option value="<dtml-var sequence-item>"><dtml-var sequence-item></option>
</dtml-in>
</select>
</div>
Expand All @@ -90,7 +90,7 @@
</div>

<div class="zmi-controls">
<input class="btn btn-primary" type="submit" name="submit" value="Export" />
<input class="btn btn-primary" type="submit" name="submit" value="Import" />
</div>

</form>
Expand Down

0 comments on commit 4cafb99

Please sign in to comment.