From 2691a5c0c4f588f8d4fbd0e2816373401807fff8 Mon Sep 17 00:00:00 2001 From: Nigel Banks Date: Tue, 20 Sep 2011 00:37:37 +0100 Subject: [PATCH] ISLANDORA-304: Islandora Fails to install Solution Packs when installed on OSX with MAMP 2 --- api/fedora_item.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/fedora_item.inc b/api/fedora_item.inc index 13f126aa..dfd39523 100644 --- a/api/fedora_item.inc +++ b/api/fedora_item.inc @@ -146,7 +146,7 @@ class Fedora_Item { * @return type */ function add_datastream_from_string($str, $datastream_id, $datastream_label = NULL, $datastream_mimetype = 'text/xml', $controlGroup = 'M', $logMessage = NULL) { - $dir = sys_get_temp_dir(); + $dir = file_directory_temp(); $tmpfilename = tempnam($dir, 'fedoratmp'); $tmpfile = fopen($tmpfilename, 'w'); fwrite($tmpfile, $str, strlen($str));