Skip to content
Snippets Groups Projects
Commit 03475880 authored by Ghislain Loas's avatar Ghislain Loas
Browse files

fix patch 250 du to failed merge

parent 8ef1b784
Branches
Tags
5 merge requests!896Master,!893Master,!886Hotline master,!883Hotline fix patch 250,!869Master
- hotine : correction du patch 250.php
\ No newline at end of file
<?php
$adapter = Zend_Db_Table::getDefaultAdapter();
$adapter->query("UPDATE variables SET liste = '$format_liste' WHERE clef = 'import_format'");
?>
\ No newline at end of file
<?php
$adapter = Zend_Db_Table::getDefaultAdapter();
$format_liste = "0:Unimarc\r\n1:Ascii tabulé\r\n2:Ascii séparé par des points-virgule\r\n3:Ascii séparé par des \"|\"\r\n4:Xml\r\n5:CSV\r\n6:Marc21\r\n";
$adapter->query("UPDATE variables SET liste = '$format_liste' WHERE clef = 'import_format'");
?>
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment