Plugin Directory

Changeset 2752610


Ignore:
Timestamp:
07/06/2022 01:38:08 PM (4 years ago)
Author:
calj
Message:

WP 6

Location:
calj/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • calj/trunk/CalJPlugin.php

    r2131936 r2752610  
    191191        for($i = 0; $i < strlen($text); )
    192192            for($j = 0; ($j < strlen($key) && $i < strlen($text)); $j++, $i++)
    193                 $outText .= $text{$i} ^ $key{$j};
     193                $outText .= substr($text, $i, 1) ^ substr($key, $j, 1);
    194194
    195195        return $outText;
    196196    }
    197197}
     198
  • calj/trunk/calj.php

    r2131936 r2752610  
    66 * Plugin URI: https://calj.net
    77 * Description: Add the Shabbat times on your site.
    8  * Version: 1.3
     8 * Version: 1.4
    99 * Author: Gabriel Zerbib <gabriel@calj.net>
    1010 * Author URI: https://calj.net
  • calj/trunk/readme.txt

    r2669099 r2752610  
    44Tags: calendar, date, events, hebrew, jewish, shortcode
    55Requires at least: 4.9
    6 Tested up to: 5.9
     6Tested up to: 6.0
    77Requires PHP: 5.6
    88Stable tag: trunk
     
    143143== Changelog ==
    144144
     145= 1.4 =
     146Support for PHP 8
     147
    145148= 1.3 =
    146149Support for multiple cities.
Note: See TracChangeset for help on using the changeset viewer.