Changeset 12408
- Timestamp:
- 08/13/11 19:31:21 (2 years ago)
- Files:
-
- freepbx/trunk/amp_conf/bin/retrieve_conf (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/trunk/amp_conf/bin/retrieve_conf
r12167 r12408 135 135 } else if (!is_link($dest)) { 136 136 freepbx_log(FPBX_LOG_ERROR, $dest.' already exists, and is not a symlink!'); 137 $this->symlink_error_modules .= "<br /> ".$dest." from ".basename($moduledir)."/".$subdir ;137 $this->symlink_error_modules .= "<br /> ".$dest." from ".basename($moduledir)."/".$subdir." (Already exists, not a link)"; 138 138 } else if (readlink($dest) != $src) { 139 139 // TODO : is this the proper handling? should we just overwrite..? 140 140 freepbx_log(FPBX_LOG_ERROR, $dest.' already exists, and is linked to something else!'); 141 $this->symlink_error_modules .= "<br /> ".$dest." from ".basename($moduledir)."/".$subdir ;141 $this->symlink_error_modules .= "<br /> ".$dest." from ".basename($moduledir)."/".$subdir." (Already exists, linked to something else)"; 142 142 } 143 143 } else {
