• Resolved Pieter Bos

    (@senlin)


    Plugin works pretty good, but with debug on whenever I delete pages, wikis, categories, tags, menus or bulk edit content or add navigation menus I am getting the following Notice:

    Notice: Undefined index: post_type in /path/wp-content/plugins/wordpress-wiki-plugin/wiki.php on line 1852

    It has to do with the name_save function, but I cannot pinpoint what it can be:

    function name_save($post_name) {
    		if ($_POST['post_type'] == 'incsub_wiki' && empty($post_name)) {
    			$post_name = $_POST['post_title'];
    		}
    
    		return $post_name;
    	}

    Anyone else experiencing the same issue?

    https://wordpress.org/plugins/wordpress-wiki-plugin/

Viewing 1 replies (of 1 total)
  • HI @piet,

    Sorry to hear of the problem you are having.

    I could not reproduce the same notice on my test site using latest version of Wiki plugin and setting debug on.

    To fix the notice you are getting could you please try editing the following plugin file on line number 1837 in the latest version of the Wiki plugin as following?

    Wiki plugin file:
    /path/wp-content/plugins/wordpress-wiki-plugin/wiki.php

    Before Editing:

    if ($_POST['post_type'] == 'incsub_wiki' && empty($post_name)) {

    After Editing:

    if ( isset( $_POST['post_type'] ) && $_POST['post_type'] == 'incsub_wiki' && empty($post_name)) {

    Please let us know whether this solution fixes the notice or not as i couldn’t reproduce it on my test site.

    Best Regards,
    WPMU DEV

Viewing 1 replies (of 1 total)
  • The topic ‘Notice: Undefined index: post_type’ is closed to new replies.