Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
noblogs-wp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ai
noblogs-wp
Commits
aec578c9
Commit
aec578c9
authored
6 years ago
by
lucha
Browse files
Options
Downloads
Patches
Plain Diff
[auto] plugin: wp2pgpmail 1.24
parent
c73848b8
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
wp-content/plugins/wp2pgpmail/readme.txt
+5
-2
5 additions, 2 deletions
wp-content/plugins/wp2pgpmail/readme.txt
wp-content/plugins/wp2pgpmail/wp2pgpmail.php
+8
-2
8 additions, 2 deletions
wp-content/plugins/wp2pgpmail/wp2pgpmail.php
with
13 additions
and
4 deletions
wp-content/plugins/wp2pgpmail/readme.txt
+
5
−
2
View file @
aec578c9
...
...
@@ -3,8 +3,8 @@ Contributors: wp2pgpmail
Donate link: http://wp2pgpmail.com
Tags: PGP, mail, contact form, encrypt, crypt, privacy, encode, secure, encryption, GnuPG, GPG
Requires at least: 2.9.2
Tested up to: 4.9.
6
Stable tag: 1.2
3
Tested up to: 4.9.
7
Stable tag: 1.2
4
Requires PHP: 5.6
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
...
...
@@ -84,6 +84,9 @@ If you want to translate the Pro Edition, please [contact us !](https://wp2pgpma
Screenshots are available on the [wp2pgpmail plugin website](https://wp2pgpmail.com/screenshots/).
== Changelog ==
= 1.24 =
* Fixing OpenPGP key support
= 1.23 =
* Updating links
...
...
This diff is collapsed.
Click to expand it.
wp-content/plugins/wp2pgpmail/wp2pgpmail.php
+
8
−
2
View file @
aec578c9
...
...
@@ -3,7 +3,7 @@
Plugin Name: wp2pgpmail
Plugin URI: http://wp2pgpmail.com
Description: A simple PGP Mail Form Plugin for WordPress
Version: 1.2
3
Version: 1.2
4
Author: wp2pgpmail
Author URI: http://wp2pgpmail.com
License:
...
...
@@ -36,7 +36,13 @@ function wp2pgpmail_init(){
}
function
wp2pgpmail_form_enqueue_script
()
{
wp_enqueue_script
(
'wp2pgpmail_script_openpgp'
,
plugin_dir_url
(
__FILE__
)
.
'js/openpgp.min.js'
,
array
(
'jquery'
)
);
wp_enqueue_script
(
'wp2pgpmail_script_rsa'
,
plugin_dir_url
(
__FILE__
)
.
'js/rsa.js'
);
wp_enqueue_script
(
'wp2pgpmail_script_aes_enc'
,
plugin_dir_url
(
__FILE__
)
.
'js/aes-enc.js'
);
wp_enqueue_script
(
'wp2pgpmail_script_sha1'
,
plugin_dir_url
(
__FILE__
)
.
'js/sha1.js'
);
wp_enqueue_script
(
'wp2pgpmail_script_base64'
,
plugin_dir_url
(
__FILE__
)
.
'js/base64.js'
);
wp_enqueue_script
(
'wp2pgpmail_script_mouse'
,
plugin_dir_url
(
__FILE__
)
.
'js/mouse.js'
);
wp_enqueue_script
(
'wp2pgpmail_script_pgencode'
,
plugin_dir_url
(
__FILE__
)
.
'js/PGencode.js'
);
wp_enqueue_script
(
'wp2pgpmail_script_openpgp'
,
plugin_dir_url
(
__FILE__
)
.
'js/openpgp.min.js'
,
array
(
'jquery'
)
);
}
add_action
(
'wp_enqueue_scripts'
,
'wp2pgpmail_form_enqueue_script'
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment