Skip to content

Commit

Permalink
set some http to https
Browse files Browse the repository at this point in the history
  • Loading branch information
liedekef committed Jan 19, 2025
1 parent 1926f30 commit 50efab0
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion eme-events.php
Original file line number Diff line number Diff line change
Expand Up @@ -9073,7 +9073,7 @@ function eme_rss() {
?>
</description>
<docs>
http://blogs.law.harvard.edu/tech/rss
https://www.rssboard.org/rss-specification
</docs>
<generator>
Weblog Editor 2.0
Expand Down
4 changes: 2 additions & 2 deletions eme-functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ function eme_update_user_phone( $user_id, $phone ) {
update_user_meta( $user_id, 'eme_phone', $phone );
}

// got from http://davidwalsh.name/php-email-encode-prevent-spam
// got from https://davidwalsh.name/php-email-encode-prevent-spam
function eme_ascii_encode( $e, $target = 'html' ) {
return eme_email_obfuscate( $e, $target );
}
Expand Down Expand Up @@ -2826,7 +2826,7 @@ function eme_sanitize_attach_filename( $filename, $use_simple_sanitize=0 ) {
$filename = preg_replace(
'~
[<>:"/\\\|?*]| # file system reserved https://en.wikipedia.org/wiki/Filename#Reserved_characters_and_words
[\x00-\x1F]| # control characters http://msdn.microsoft.com/en-us/library/windows/desktop/aa365247%28v=vs.85%29.aspx
[\x00-\x1F]| # control characters https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247%28v=vs.85%29.aspx
[\x7F\xA0\xAD]| # non-printing characters DEL, NO-BREAK SPACE, SOFT HYPHEN
[#\[\]@!$&\'()+,;=]| # URI reserved https://www.rfc-editor.org/rfc/rfc3986#section-2.2
[{}^\~`] # URL unsafe characters https://www.ietf.org/rfc/rfc1738.txt
Expand Down
2 changes: 1 addition & 1 deletion eme-holidays.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ function eme_holidays_edit_layout( $message = '' ) {
<tr class='form-field'>
<th scope='row' style='vertical-align:top'><label for='description'>" . __( 'Holidays list', 'events-made-easy' ) . "</label></th>
<td><textarea name='list' id='description' rows='5' >" . eme_esc_html( $holidays['list'] ) . '</textarea><br>
' . __( 'Basic format: YYYY-MM-DD, one per line', 'events-made-easy' ) . '<br>' . __( 'For more information about holidays, see ', 'events-made-easy' ) . " <a target='_blank' href='http://www.e-dynamics.be/wordpress/?cat=6086'>" . __( 'the documentation', 'events-made-easy' ) . "</a></td>
' . __( 'Basic format: YYYY-MM-DD, one per line', 'events-made-easy' ) . '<br>' . __( 'For more information about holidays, see ', 'events-made-easy' ) . " <a target='_blank' href='https://www.e-dynamics.be/wordpress/?cat=6086'>" . __( 'the documentation', 'events-made-easy' ) . "</a></td>
</tr>
</table>
<p class='submit'><input type='submit' class='button-primary' name='submit' value='" . $action_string . "'></p>
Expand Down
2 changes: 1 addition & 1 deletion eme-mailer.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ function eme_send_mail( $subject, $body, $receiveremail, $receivername = '', $re
$message = __( 'Empty email', 'events-made-easy' );
}

// Reset content-type to avoid conflicts -- http://core.trac.wordpress.org/ticket/23578
// Reset content-type to avoid conflicts
//if ( $mailoptions['send_html'] ) {
// remove_filter( 'wp_mail_content_type', 'eme_set_wpmail_html_content_type' );
//}
Expand Down
2 changes: 1 addition & 1 deletion eme-payments.php
Original file line number Diff line number Diff line change
Expand Up @@ -1878,7 +1878,7 @@ function eme_notification_legacypaypal() {
$ipn->currencies = false;

// date format on log headers (default: dd/mm/YYYY HH:mm:ss)
// see http://php.net/date
// see https://php.net/date
$ipn->date_format = 'd/m/Y H:i:s';

// Prefix for file and mail logs
Expand Down
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Requires at least: 6.0
Tested up to: 6.7
Stable tag: 2.5.33
Requires PHP: 8.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl.html

Manage and display events, memberships, recurring events, locations and maps, volunteers, widgets, RSVP, ICAL and RSS feeds, payment gateways support. SEO compatible.

Expand Down

0 comments on commit 50efab0

Please sign in to comment.