aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2018-07-27 10:38:51 +0200
committerGuy Brand <gb@unistra.fr>2019-01-06 10:14:01 +0100
commitc5cd7bf4f4078a8bad5189bb452663a0f71d7246 (patch)
tree6215036de929a5555feef42aae899460601a542e
parent879d2b08ea80562b2c649cc70c70831f126674e4 (diff)
downloaddokuwiki-c5cd7bf4f4078a8bad5189bb452663a0f71d7246.tar.gz
dokuwiki-c5cd7bf4f4078a8bad5189bb452663a0f71d7246.zip
continue is break in switch
This should fix a warning in PHP 7.3
-rw-r--r--inc/parser/handler.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/parser/handler.php b/inc/parser/handler.php
index 780c6cf48..12551588b 100644
--- a/inc/parser/handler.php
+++ b/inc/parser/handler.php
@@ -1549,7 +1549,7 @@ class Doku_Handler_Table implements Doku_Handler_CallWriter_Interface {
// an empty one to avoid broken tables
$this->tableCalls[$key][0] = 'cdata';
$this->tableCalls[$key][1][0] = '';
- continue;
+ break;
}
$this->tableCalls[$cellKey[$spanning_cell][$lastCell]][1][2]++;