Changeset 2752610
- Timestamp:
- 07/06/2022 01:38:08 PM (4 years ago)
- Location:
- calj/trunk
- Files:
-
- 3 edited
-
CalJPlugin.php (modified) (1 diff)
-
calj.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
calj/trunk/CalJPlugin.php
r2131936 r2752610 191 191 for($i = 0; $i < strlen($text); ) 192 192 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); 194 194 195 195 return $outText; 196 196 } 197 197 } 198 -
calj/trunk/calj.php
r2131936 r2752610 6 6 * Plugin URI: https://calj.net 7 7 * Description: Add the Shabbat times on your site. 8 * Version: 1. 38 * Version: 1.4 9 9 * Author: Gabriel Zerbib <gabriel@calj.net> 10 10 * Author URI: https://calj.net -
calj/trunk/readme.txt
r2669099 r2752610 4 4 Tags: calendar, date, events, hebrew, jewish, shortcode 5 5 Requires at least: 4.9 6 Tested up to: 5.96 Tested up to: 6.0 7 7 Requires PHP: 5.6 8 8 Stable tag: trunk … … 143 143 == Changelog == 144 144 145 = 1.4 = 146 Support for PHP 8 147 145 148 = 1.3 = 146 149 Support for multiple cities.
Note: See TracChangeset
for help on using the changeset viewer.