Commit 32c62881 authored by Jonathan.Wage's avatar Jonathan.Wage

Fixes #600

parent 43c8eba2
...@@ -120,7 +120,7 @@ abstract class Doctrine_Parser ...@@ -120,7 +120,7 @@ abstract class Doctrine_Parser
ob_start(); ob_start();
if ( ! file_exists($path)) { if ( ! file_exists($path)) {
$contents = $path; $contents = $path;
$path = '/tmp/dparser_' . microtime(); $path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'dparser_' . microtime();
file_put_contents($path, $contents); file_put_contents($path, $contents);
} }
......
...@@ -248,7 +248,7 @@ UserProfile: ...@@ -248,7 +248,7 @@ UserProfile:
sorting: ASC sorting: ASC
length: 10 length: 10
primary: true primary: true
last_name: ~ last_name: []
type: unique type: unique
</code> </code>
......
Markdown is supported
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