mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +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);
|
||||
$unlinkedversions = $dms->getUnlinkedDocumentContent();
|
||||
if(!isset($_GET['action']) || $_GET['action'] == 'listUnlinkedFolders')) {
|
||||
if(!isset($_GET['action']) || $_GET['action'] == 'listUnlinkedFolders')
|
||||
$unlinkedfolders = $dms->checkFolders();
|
||||
else
|
||||
$unlinkedfolders = null;
|
||||
if(!isset($_GET['action']) || $_GET['action'] == 'listUnlinkedDocuments')) {
|
||||
if(!isset($_GET['action']) || $_GET['action'] == 'listUnlinkedDocuments')
|
||||
$unlinkeddocuments = $dms->checkDocuments();
|
||||
else
|
||||
$unlinkeddocuments = null;
|
||||
if(!isset($_GET['action']) || $_GET['action'] == 'listMissingFileSize')) {
|
||||
if(!isset($_GET['action']) || $_GET['action'] == 'listMissingFileSize')
|
||||
$nofilesizeversions = $dms->getNoFileSizeDocumentContent();
|
||||
else
|
||||
$nofilesizeversions = null;
|
||||
if(!isset($_GET['action']) || $_GET['action'] == 'listMissingChecksum')) {
|
||||
if(!isset($_GET['action']) || $_GET['action'] == 'listMissingChecksum')
|
||||
$nochecksumversions = $dms->getNoChecksumDocumentContent();
|
||||
else
|
||||
$nochecksumversions = null;
|
||||
if(!isset($_GET['action']) || $_GET['action'] == 'listDuplicateContent')) {
|
||||
if(!isset($_GET['action']) || $_GET['action'] == 'listDuplicateContent')
|
||||
$duplicateversions = $dms->getDuplicateDocumentContent();
|
||||
else
|
||||
$duplicateversions = null;
|
||||
|
|
Loading…
Reference in New Issue
Block a user