Skip to content
Snippets Groups Projects
Commit e6e6b44e authored by llaffont's avatar llaffont
Browse files

Remove warning in cosmogramme patch loop

parent b253c40b
Branches
Tags
No related merge requests found
......@@ -144,7 +144,7 @@ function runSqlUpgrade($script, $sql) {
flush();
// Executer
$num_instruction++;
if($_REQUEST['reprise'] > 0 and $_REQUEST["reprise"] >= $num_instruction)
if (isset($_REQUEST['reprise']) and ($_REQUEST['reprise'] > 0) and ($_REQUEST["reprise"] >= $num_instruction))
continue;
try {
$sql->execute($instruction);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment