提交 27c76b6a 编写于 作者: J jianbo

修复激活插件的报错

上级 f2c3d127
......@@ -393,6 +393,12 @@ class RAM_REST_Comments_Controller extends WP_REST_Controller{
}
}
// if(!empty($formId) && strlen($formId>50))
// {
// return new WP_Error( 'error', 'fromId参数错误', array( 'status' => 500 ) );
// }
if(!username_exists($openid))
{
return new WP_Error( 'error', '不允许提交', array('status' => 500 ));
......
<?php
<?php
/*
Plugin Name: REST API TO MiniProgram
Plugin URI: http://www.watch-life.net
Description: 为微信小程序、app提供定制WordPress REST API 输出.支持微信支付、微信小程序模板消息.
Version: 1.5.4
Version: 1.5.5
Author: jianbo
Author URI: http://www.minapper.com
License: GPL v3
......@@ -54,8 +54,8 @@ if ( ! class_exists( 'RestAPIMiniProgram' ) ) {
if ( is_admin() ) {
//new WP_Category_Config();
add_action('admin_menu', 'weixinapp_create_menu');
add_filter( 'plugin_action_links', 'ram_plugin_action_links', 10, 2 );
add_action('admin_menu', 'weixinapp_create_menu');
add_filter( 'plugin_action_links', 'ram_plugin_action_links', 10, 2 );
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册