Test Setup Failed
Push — issue/89 ( fab296 )
by Tomas Norre
06:11
created
template/process/list.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,8 +71,11 @@
 block discarded – undo
71 71
 					</div>
72 72
 				<?php elseif ($process->getState() == 'cancelled'): ?>
73 73
 					<?php echo $this->getLLLabel('LLL:EXT:crawler/modfunc1/locallang.xml:labels.process.cancelled'); ?>
74
-				<?php else: ?>
75
-					<?php echo $this->getLLLabel('LLL:EXT:crawler/modfunc1/locallang.xml:labels.process.success'); ?>
74
+				<?php else {
75
+    : ?>
76
+					<?php echo $this->getLLLabel('LLL:EXT:crawler/modfunc1/locallang.xml:labels.process.success');
77
+}
78
+?>
76 79
 				<?php endif; ?>
77 80
 				</td>
78 81
 			</tr>
Please login to merge, or discard this patch.
domain/queue/class.tx_crawler_domain_queue_repository.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     {
65 65
         $db = $this->getDB();
66 66
         $where = 'process_id_completed=' . $db->fullQuoteStr($process->getProcess_id(), $this->tableName) .
67
-                   ' AND exec_time > 0 ';
67
+                    ' AND exec_time > 0 ';
68 68
         $limit = 1;
69 69
         $groupby = '';
70 70
 
Please login to merge, or discard this patch.