Code Duplication    Length = 4-4 lines in 2 locations

app/Controller/ProdutoController.php 2 locations

@@ 47-50 (lines=4) @@
44
			}
45
		}
46
47
		if ( isset( $_GET['sSearch'] ) && !empty( $_GET['sSearch'] ) )
48
		{
49
			$conditions['conditions']['Produto.nome LIKE '] = '%' . $_GET['sSearch'] . '%';
50
		}
51
		
52
		$produtos = $this->Produto->find('all', $conditions);
53
@@ 136-139 (lines=4) @@
133
			}
134
		}
135
136
		if ( isset( $_GET['sSearch'] ) && !empty( $_GET['sSearch'] ) )
137
		{
138
			$conditions['conditions']['Produto.nome LIKE '] = '%' . $_GET['sSearch'] . '%';
139
		}
140
		
141
		$produtos = $this->Produto->find('all', $conditions);
142