Changeset 1864976
- Timestamp:
- 04/26/2018 06:25:01 PM (8 years ago)
- Location:
- appful/trunk
- Files:
-
- 3 edited
-
appful.php (modified) (1 diff)
-
controllers/respond.php (modified) (1 diff)
-
models/comment.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
appful/trunk/appful.php
r1851866 r1864976 4 4 Plugin URI: https://appful.io/ 5 5 Description: appful is one of the world's most remarkable & beautiful app service for Blogger and Online magazines. It is designed to create outstanding real native iOS and Android Apps based on the content of your Wordpress site or YouTube channel. appful is surprisingly simple to use and not a single line of code is required. 6 Version: 1.0.10 46 Version: 1.0.105 7 7 Author: appful GmbH 8 8 Author URI: https://appful.io/ -
appful/trunk/controllers/respond.php
r1741707 r1864976 15 15 $appful_api->error("No post specified. Include 'post_id' var in your request."); 16 16 die(); 17 } else if (empty($_REQUEST[' name']) || empty($_REQUEST['email']) || empty($_REQUEST['content'])) {17 } else if (empty($_REQUEST['comment_name']) || empty($_REQUEST['email']) || empty($_REQUEST['content'])) { 18 18 $appful_api->error("Please include all required arguments (name, email, content)."); 19 19 die(); -
appful/trunk/models/comment.php
r1741707 r1864976 67 67 $data = array( 68 68 'comment_post_ID' => $_REQUEST["post_id"], 69 'comment_author' => $_REQUEST[" name"],69 'comment_author' => $_REQUEST["comment_name"], 70 70 'comment_author_email' => $_REQUEST["email"], 71 71 'comment_author_url' => $_REQUEST["url"],
Note: See TracChangeset
for help on using the changeset viewer.