dokuwiki icon indicating copy to clipboard operation
dokuwiki copied to clipboard

Warning: Undefined array key 3 in /home1/~/inc/media.php on line 175

Open JoBongHyeon opened this issue 1 year ago • 1 comments

When you enter the Media Manager menu and click the Edit tab of the jpg file, an error message appears.

Warning: Undefined array key 3 in /home1/~/inc/media.php on line 175

JoBongHyeon avatar Jun 21 '23 13:06 JoBongHyeon

$tags = [$field[0]]; if(isset($field[3])) <------------------------------ add this line if (is_array($field[3])) $tags = array_merge($tags, $field[3]);

wangsclub avatar Sep 13 '23 15:09 wangsclub