tech_memo / Pukiwiki


tech_memo

Plugin

ソースハイライト

tinymceedit

クリップボードから画像を貼付け

設定


日本語単語検索の文字化け

  • lib/html.phpの150行目の以下をコメントアウトすることで解消
    $body = preg_replace_callback($pattern, $decorate_Nth_word, $body);

ページ名変更時のパスワードなし設定

  • rename.inc.phpを編集
       $pass = plugin_rename_getvar('pass');
       //if ($pass != '' && pkwk_login($pass)) {
       if (TRUE) {
           return plugin_rename_proceed($pages, $files, $exists);
       } else if ($pass != '') {
           $msg = plugin_rename_err('adminpass');
       }