aboutsummaryrefslogtreecommitdiffstats
path: root/include/import.php
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2016-07-31 07:30:25 -0400
committerAndrew Manning <tamanning@zoho.com>2016-07-31 07:30:25 -0400
commit7c475575549161d465189fa5e726739f4a4ac76c (patch)
tree66414a6d4f161dcb88ccd5f919fd77a8d3369539 /include/import.php
parent32366284a8372a4d5c7798b3ee3b238a614915ab (diff)
downloadvolse-hubzilla-7c475575549161d465189fa5e726739f4a4ac76c.tar.gz
volse-hubzilla-7c475575549161d465189fa5e726739f4a4ac76c.tar.bz2
volse-hubzilla-7c475575549161d465189fa5e726739f4a4ac76c.zip
Improved UI. Removed logger statements.
Diffstat (limited to 'include/import.php')
-rw-r--r--include/import.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/import.php b/include/import.php
index c69f2eadd..0b2cd38df 100644
--- a/include/import.php
+++ b/include/import.php
@@ -1252,15 +1252,15 @@ function scan_webpage_elements($path, $type, $cloud = false) {
$dirtoscan = $path;
switch ($type) {
case 'page':
- $dirtoscan .= 'pages/';
+ $dirtoscan .= '/pages/';
$json_filename = 'page.json';
break;
case 'layout':
- $dirtoscan .= 'layouts/';
+ $dirtoscan .= '/layouts/';
$json_filename = 'layout.json';
break;
case 'block':
- $dirtoscan .= 'blocks/';
+ $dirtoscan .= '/blocks/';
$json_filename = 'block.json';
break;
default :