Skip to content
Snippets Groups Projects
Commit 0c94e992 authored by Laurent's avatar Laurent
Browse files

Merge branch 'hotline_fix_patch_250' into 'hotline-master'

Hotline fix patch 250

See merge request !883
parents 8ef1b784 03475880
4 merge requests!896Master,!893Master,!886Hotline master,!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