Browse Source

ISLANDORA-304: Islandora Fails to install Solution Packs when installed on OSX with MAMP 2

pull/30/head
Nigel Banks 13 years ago
parent
commit
2691a5c0c4
  1. 2
      api/fedora_item.inc

2
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));

Loading…
Cancel
Save