Completed
Push — master ( aedf9a...cd6bf0 )
by Erik
35s queued 10s
created
Classes/Plugin/Search.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -552,14 +552,14 @@
 block discarded – undo
552 552
         $results = $solr->service->select($selectQuery);
553 553
         $facet = $results->getFacetSet();
554 554
 
555
-        $facetCollectionArray = array();
555
+        $facetCollectionArray = array ();
556 556
 
557 557
         // replace everything expect numbers and comma
558 558
         $facetCollections = preg_replace('/[^0-9,]/', '', $this->conf['facetCollections']);
559 559
         $result = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
560 560
             'tx_dlf_collections.index_name AS index_name',
561 561
             'tx_dlf_collections',
562
-            'tx_dlf_collections.uid IN (' . $facetCollections . ')'
562
+            'tx_dlf_collections.uid IN ('.$facetCollections.')'
563 563
                 .Helper::whereClause('tx_dlf_collections')
564 564
         );
565 565
 
Please login to merge, or discard this patch.
class.ext_update.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -364,10 +364,10 @@
 block discarded – undo
364 364
         );
365 365
         while ($resArray = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($result)) {
366 366
             if ($resArray['COLUMN_NAME'] == 'document_format') {
367
-                return false;
367
+                return FALSE;
368 368
             }
369 369
         }
370
-        return true;
370
+        return TRUE;
371 371
     }
372 372
 
373 373
     protected function updateDocumentAddFormat() {
Please login to merge, or discard this patch.