mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-14 05:31:42 +00:00
fix syntax errors
This commit is contained in:
parent
52a9e37729
commit
4e55911213
|
@ -66,23 +66,23 @@ if(isset($_GET['setchecksum']) && $_GET['setchecksum'] == 1) {
|
||||||
|
|
||||||
$folder = $dms->getFolder($settings->_rootFolderID);
|
$folder = $dms->getFolder($settings->_rootFolderID);
|
||||||
$unlinkedversions = $dms->getUnlinkedDocumentContent();
|
$unlinkedversions = $dms->getUnlinkedDocumentContent();
|
||||||
if(!isset($_GET['action']) || $_GET['action'] == 'listUnlinkedFolders')) {
|
if(!isset($_GET['action']) || $_GET['action'] == 'listUnlinkedFolders')
|
||||||
$unlinkedfolders = $dms->checkFolders();
|
$unlinkedfolders = $dms->checkFolders();
|
||||||
else
|
else
|
||||||
$unlinkedfolders = null;
|
$unlinkedfolders = null;
|
||||||
if(!isset($_GET['action']) || $_GET['action'] == 'listUnlinkedDocuments')) {
|
if(!isset($_GET['action']) || $_GET['action'] == 'listUnlinkedDocuments')
|
||||||
$unlinkeddocuments = $dms->checkDocuments();
|
$unlinkeddocuments = $dms->checkDocuments();
|
||||||
else
|
else
|
||||||
$unlinkeddocuments = null;
|
$unlinkeddocuments = null;
|
||||||
if(!isset($_GET['action']) || $_GET['action'] == 'listMissingFileSize')) {
|
if(!isset($_GET['action']) || $_GET['action'] == 'listMissingFileSize')
|
||||||
$nofilesizeversions = $dms->getNoFileSizeDocumentContent();
|
$nofilesizeversions = $dms->getNoFileSizeDocumentContent();
|
||||||
else
|
else
|
||||||
$nofilesizeversions = null;
|
$nofilesizeversions = null;
|
||||||
if(!isset($_GET['action']) || $_GET['action'] == 'listMissingChecksum')) {
|
if(!isset($_GET['action']) || $_GET['action'] == 'listMissingChecksum')
|
||||||
$nochecksumversions = $dms->getNoChecksumDocumentContent();
|
$nochecksumversions = $dms->getNoChecksumDocumentContent();
|
||||||
else
|
else
|
||||||
$nochecksumversions = null;
|
$nochecksumversions = null;
|
||||||
if(!isset($_GET['action']) || $_GET['action'] == 'listDuplicateContent')) {
|
if(!isset($_GET['action']) || $_GET['action'] == 'listDuplicateContent')
|
||||||
$duplicateversions = $dms->getDuplicateDocumentContent();
|
$duplicateversions = $dms->getDuplicateDocumentContent();
|
||||||
else
|
else
|
||||||
$duplicateversions = null;
|
$duplicateversions = null;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user