Fix spacing of all touched lines.
This commit is contained in:
parent
29b6dd53a0
commit
d38929fb10
|
@ -10,7 +10,7 @@ OCP\JSON::checkLoggedIn();
|
||||||
|
|
||||||
// Load the files
|
// Load the files
|
||||||
$dir = isset( $_GET['dir'] ) ? $_GET['dir'] : '';
|
$dir = isset( $_GET['dir'] ) ? $_GET['dir'] : '';
|
||||||
$doBreadcrumb = isset( $_GET['breadcrumb'] );
|
$doBreadcrumb = isset($_GET['breadcrumb']);
|
||||||
$data = array();
|
$data = array();
|
||||||
|
|
||||||
// Make breadcrumb
|
// Make breadcrumb
|
||||||
|
|
|
@ -18,7 +18,7 @@ $forms=OC_App::getForms('admin');
|
||||||
$htaccessworking=OC_Util::ishtaccessworking();
|
$htaccessworking=OC_Util::ishtaccessworking();
|
||||||
|
|
||||||
$entries=OC_Log_Owncloud::getEntries(3);
|
$entries=OC_Log_Owncloud::getEntries(3);
|
||||||
$entriesremain=count(OC_Log_Owncloud::getEntries(4)) > 3;
|
$entriesremain = count(OC_Log_Owncloud::getEntries(4)) > 3;
|
||||||
|
|
||||||
$tmpl->assign('loglevel', OC_Config::getValue( "loglevel", 2 ));
|
$tmpl->assign('loglevel', OC_Config::getValue( "loglevel", 2 ));
|
||||||
$tmpl->assign('entries', $entries);
|
$tmpl->assign('entries', $entries);
|
||||||
|
|
|
@ -16,6 +16,6 @@ $data = array();
|
||||||
OC_JSON::success(
|
OC_JSON::success(
|
||||||
array(
|
array(
|
||||||
"data" => $entries,
|
"data" => $entries,
|
||||||
"remain"=>count(OC_Log_Owncloud::getEntries(1, $offset + $count)) !== 0
|
"remain" => count(OC_Log_Owncloud::getEntries(1, $offset + $count)) !== 0
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue