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

Fixes #600

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