aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Admin.php
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2016-05-10 21:01:47 -0400
committerAndrew Manning <tamanning@zoho.com>2016-05-10 21:01:47 -0400
commit40e3d37a723f28a8957f3a844f9470c274c330e9 (patch)
treed18ce5613a87f1d393559f5ca6a9c2b741dd7b57 /Zotlabs/Module/Admin.php
parent2882eef42fd7665d00c745276fb4315da29cadff (diff)
downloadvolse-hubzilla-40e3d37a723f28a8957f3a844f9470c274c330e9.tar.gz
volse-hubzilla-40e3d37a723f28a8957f3a844f9470c274c330e9.tar.bz2
volse-hubzilla-40e3d37a723f28a8957f3a844f9470c274c330e9.zip
Remove debugging lines
Diffstat (limited to 'Zotlabs/Module/Admin.php')
-rw-r--r--Zotlabs/Module/Admin.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/Zotlabs/Module/Admin.php b/Zotlabs/Module/Admin.php
index a9f06b7ef..0e3ee68c4 100644
--- a/Zotlabs/Module/Admin.php
+++ b/Zotlabs/Module/Admin.php
@@ -1791,12 +1791,8 @@ class Admin extends \Zotlabs\Web\Controller {
foreach ($files as $file)
{
if(is_dir($repoDir.'/'.$file) && $file !== '.git') {
- $source = realpath(__DIR__ . '/../../extend/addon/'.$repoName.'/'.$file.'/');
$source = '../extend/addon/'.$repoName.'/'.$file;
$target = realpath(__DIR__ . '/../../addon/').'/'.$file;
- logger('file: ' . json_encode($file));
- logger('source: ' . $source);
- logger('target: ' . $target);
unlink($target);
if(!symlink($source, $target)) {
logger('Error linking addons to /addon');