Skip to content

Commit

Permalink
Removed PHP undefined variable warning, line 603 action/meta.php
Browse files Browse the repository at this point in the history
  • Loading branch information
turnermm committed Sep 27, 2022
1 parent da29873 commit a095548
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion action/meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ function check_userfiles() {
$show_msg = true;
}
$link_names = array('flash', 'image', 'media', 'file', 'image');
if(is_array($winlinks) && count($winlinks)) {
if(isset($winlinks) && is_array($winlinks) && count($winlinks)) {
$link_names = array_diff($link_names, $winlinks);
}
$links = array();
Expand Down
2 changes: 1 addition & 1 deletion plugin.info.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
base ckgedit
author Myron Turner
email turnermm02@shaw.ca
date 2022-09-09
date 2022-09-27
name ckgedit
desc WYSIWYG plugin for Dokuwiki
url https://www.dokuwiki.org/plugin:ckgedit
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
current_22-Sep_09-15_17
current_22-Sep_27-14_11

0 comments on commit a095548

Please sign in to comment.