Skip to content

Commit

Permalink
resolves #1
Browse files Browse the repository at this point in the history
  • Loading branch information
julienmru committed Apr 4, 2016
1 parent 505c69a commit 434e04d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion inc/ods_to_array.php
Expand Up @@ -4,7 +4,7 @@ function inc_ods_to_array_dist($data, $options = []) {

if ($data) {

$file = 'tmp/cache/'.uniqid('xls');
$file = _DIR_CACHE.uniqid('xls');

file_put_contents($file, $data);
unset($data);
Expand Down
2 changes: 1 addition & 1 deletion inc/xls_to_array.php
Expand Up @@ -4,7 +4,7 @@ function inc_xls_to_array_dist($data, $options = []) {

if ($data) {

$file = 'tmp/cache/'.uniqid('xls');
$file = _DIR_CACHE.uniqid('xls');

file_put_contents($file, $data);
unset($data);
Expand Down
2 changes: 1 addition & 1 deletion inc/xlsx_to_array.php
Expand Up @@ -4,7 +4,7 @@ function inc_xlsx_to_array_dist($data, $options = []) {

if ($data) {

$file = 'tmp/cache/'.uniqid('xls');
$file = _DIR_CACHE.uniqid('xls');

file_put_contents($file, $data);
unset($data);
Expand Down
2 changes: 1 addition & 1 deletion paquet.xml
@@ -1,7 +1,7 @@
<paquet
prefix="iterateur_xls"
categorie="outil"
version="1.0.3"
version="1.0.4"
etat="test"
compatibilite="[3.0.0;3.1.*]"
documentation="http://contrib.spip.net/iterateur_xls"
Expand Down

0 comments on commit 434e04d

Please sign in to comment.