Changeset 1369072
- Timestamp:
- 03/11/2016 10:15:55 AM (10 years ago)
- File:
-
- 1 edited
-
jheck-chat/tags/1.4/jheck-chat.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jheck-chat/tags/1.4/jheck-chat.php
r1369067 r1369072 27 27 global $wpdb; 28 28 global $jc_db_version; 29 $jc_db_version = '1. 4';29 $jc_db_version = '1.1'; 30 30 31 31 if (!defined("JC_URL")) { … … 47 47 } 48 48 49 if (!defined("JC_ENCRYPTION_KEY")) {50 define("JC_ENCRYPTION_KEY", 'jHeCkChAt');51 }52 53 54 49 /** 55 50 * Use vafpress framework … … 87 82 * @since 1.3 88 83 */ 89 register_activation_hook( __FILE__, 'jc_plugin_activated');84 add_action( 'activated_plugin', 'jc_plugin_activated', 10, 2 ); 90 85 91 86 /** … … 93 88 * @since 1.3 94 89 */ 95 register_deactivation_hook( __FILE__, 'jc_plugin_deactivated');90 add_action( 'deactivated_plugin', 'jc_plugin_deactivated', 10, 2 ); 96 91 97 92
Note: See TracChangeset
for help on using the changeset viewer.