[FIX] ability to backup databases in case listing databases is forbidden (via --no-database-list on the server)

lp bug: https://launchpad.net/bugs/939428 fixed

bzr revid: xmo@openerp.com-20120223133937-3115jyzjtbzequbq
This commit is contained in:
Xavier Morel 2012-02-23 14:39:37 +01:00
parent 3be394de8a
commit 50853cbaac
2 changed files with 2 additions and 2 deletions

View File

@ -449,7 +449,7 @@ openerp.web.Database = openerp.web.OldWidget.extend(/** @lends openerp.web.Datab
submitHandler: function (form) {
var $form = $(form),
fields = $form.serializeArray(),
$db_list = $form.find('select[name=drop_db]'),
$db_list = $form.find('[name=drop_db]'),
db = $db_list.val();
if (!confirm("Do you really want to delete the database: " + db + " ?")) {

View File

@ -154,7 +154,7 @@
<option t-att-value="db"><t t-esc="db"/></option>
</t>
</select>
<input t-if="!db_list" name="drop_db" class="required"
<input t-if="!db_list" name="backup_db" class="required"
type="text" autofocus="autofocus"/>
</td>
</tr>