Overview
Comment:Fix plugin install
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA1: 530ac81be6f084aa7b115d48f409aa5e96f34aa2
User & Date: bohwaz on 2020-12-02 23:11:09
Other Links: branch diff | manifest | tags
Context
2020-12-03
00:36
Send plugin root as one of parameters passed to events check-in: f5d8c70106 user: bohwaz tags: dev
2020-12-02
23:11
Fix plugin install check-in: 530ac81be6 user: bohwaz tags: dev
13:02
Fix arguments order in date filters check-in: f5fe8e1fa6 user: bohwaz tags: dev, 1.0.0-rc4
Changes

Modified src/templates/admin/config/plugins.tpl from [7c6e7921f2] to [87c21ad0af].

79
80
81
82
83
84
85
86
87

88
89
90
91
92
93
94
    <form method="post" action="{$self_url}">

        <fieldset>
            <legend>Extensions à installer</legend>
            <dl>
                {foreach from=$liste_telecharges item="plugin" key="id"}
                <dt>
                    <label>
                        <input type="radio" name="plugin" value="{$id}" />

                        {$plugin.nom}
                    </label>
                    (version {$plugin.version})
                </dt>
                <dd>[<a href="{$plugin.url}" onclick="return !window.open(this.href);">{$plugin.auteur}</a>] {$plugin.description}</dd>
                {/foreach}
            </dl>







<
|
>







79
80
81
82
83
84
85

86
87
88
89
90
91
92
93
94
    <form method="post" action="{$self_url}">

        <fieldset>
            <legend>Extensions à installer</legend>
            <dl>
                {foreach from=$liste_telecharges item="plugin" key="id"}
                <dt>

                    <input type="radio" name="plugin" value="{$id}" id="f_{$id}" />
                    <label for="f_{$id}">
                        {$plugin.nom}
                    </label>
                    (version {$plugin.version})
                </dt>
                <dd>[<a href="{$plugin.url}" onclick="return !window.open(this.href);">{$plugin.auteur}</a>] {$plugin.description}</dd>
                {/foreach}
            </dl>