Changeset 3079812
- Timestamp:
- 05/01/2024 10:55:22 AM (23 months ago)
- Location:
- easily-post-gpt
- Files:
-
- 33 added
- 3 edited
-
tags/1.0.5 (added)
-
tags/1.0.5/LICENSE.txt (added)
-
tags/1.0.5/README.txt (added)
-
tags/1.0.5/admin (added)
-
tags/1.0.5/admin/class-gpt2wp-admin.php (added)
-
tags/1.0.5/admin/css (added)
-
tags/1.0.5/admin/css/gpt2wp-admin.css (added)
-
tags/1.0.5/admin/index.php (added)
-
tags/1.0.5/admin/js (added)
-
tags/1.0.5/admin/js/gpt2wp-admin.js (added)
-
tags/1.0.5/admin/partials (added)
-
tags/1.0.5/admin/partials/gpt2wp-admin-display.php (added)
-
tags/1.0.5/gpt2wp.php (added)
-
tags/1.0.5/includes (added)
-
tags/1.0.5/includes/class-gpt2wp-activator.php (added)
-
tags/1.0.5/includes/class-gpt2wp-deactivator.php (added)
-
tags/1.0.5/includes/class-gpt2wp-i18n.php (added)
-
tags/1.0.5/includes/class-gpt2wp-loader.php (added)
-
tags/1.0.5/includes/class-gpt2wp.php (added)
-
tags/1.0.5/includes/index.php (added)
-
tags/1.0.5/index.php (added)
-
tags/1.0.5/languages (added)
-
tags/1.0.5/languages/gpt2wp.pot (added)
-
tags/1.0.5/public (added)
-
tags/1.0.5/public/class-gpt2wp-public.php (added)
-
tags/1.0.5/public/css (added)
-
tags/1.0.5/public/css/gpt2wp-public.css (added)
-
tags/1.0.5/public/index.php (added)
-
tags/1.0.5/public/js (added)
-
tags/1.0.5/public/js/gpt2wp-public.js (added)
-
tags/1.0.5/public/partials (added)
-
tags/1.0.5/public/partials/gpt2wp-public-display.php (added)
-
tags/1.0.5/uninstall.php (added)
-
trunk/README.txt (modified) (1 diff)
-
trunk/admin/class-gpt2wp-admin.php (modified) (1 diff)
-
trunk/gpt2wp.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easily-post-gpt/trunk/README.txt
r3078109 r3079812 3 3 Tags: chatgpt, ai, gpt4, post from gpt, SEO, WP GPT Poster 4 4 Requires at least: 5.7 5 Tested up to: 6.5 6 Stable tag: 1.0. 45 Tested up to: 6.5.2 6 Stable tag: 1.0.5 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
easily-post-gpt/trunk/admin/class-gpt2wp-admin.php
r3078109 r3079812 129 129 function gpt2wp_check_api_key($request) { 130 130 $headers = apache_request_headers(); 131 $h=print_r($headers,true);131 $headers = array_change_key_case($headers, CASE_LOWER); 132 132 $api_key = isset($headers['apikey']) ? $headers['apikey'] : ''; 133 133 if ($api_key==""){ 134 $api_key = isset($headers['Apikey']) ? $headers['Apikey'] : ''; 135 } 134 136 135 137 if ($api_key != gpt2wp_get_gptwp_api()) { -
easily-post-gpt/trunk/gpt2wp.php
r3078110 r3079812 17 17 * Plugin URI: https://gpttowp.com 18 18 * Description: Easily post from ChatGPT to your WP without writing any codes. 19 * Version: 1.0. 419 * Version: 1.0.5 20 20 * Author: Knowhalim 21 21 * Author URI: https://knowhalim.com/ … … 32 32 33 33 34 define( 'GPT2WP_VERSION', '1.0. 4' );34 define( 'GPT2WP_VERSION', '1.0.5' ); 35 35 36 36
Note: See TracChangeset
for help on using the changeset viewer.