Fix bug 6136, shared should be relative to the installation

This commit is contained in:
Alexandre Rosenfeld
2011-02-09 14:47:18 +00:00
parent 19e4f97c1f
commit 789e59cc10
2 changed files with 3 additions and 3 deletions

View File

@@ -84,8 +84,8 @@ echo '<?xml version="1.0" encoding="UTF-8" ?>';
{
classInstaller.make({
server :"installServer.php",
path_data:"<?php echo defined('PATH_DATA')?PATH_DATA:'/opt/processmaker/shared';?>",
path_compiled:"<?php echo defined('PATH_C')?PATH_C:'/opt/processmaker/compiled';?>",
path_data:"<?php echo defined('PATH_DATA')?PATH_DATA:PATH_TRUNK.'shared';?>",
path_compiled:"<?php echo defined('PATH_C')?PATH_C:PATH_TRUNK.'compiled';?>",
path_trunk:"<?php echo PATH_CORE;?>"
});
},