Changeset 2442619
- Timestamp:
- 12/18/2020 10:57:37 PM (5 years ago)
- Location:
- code-injection/trunk
- Files:
-
- 4 edited
-
code-injection.php (modified) (2 diffs)
-
includes/code-type.php (modified) (1 diff)
-
languages/code-injection.pot (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
code-injection/trunk/code-injection.php
r2387571 r2442619 5 5 * Plugin URI: https://github.com/Rmanaf/wp-code-injection 6 6 * Description: This plugin allows you to inject code snippets into the pages. 7 * Version: 2.4. 57 * Version: 2.4.6 8 8 * Author: Rmanaf 9 9 * Author URI: https://profiles.wordpress.org/rmanaf/ … … 34 34 private static $role_version = '1.0.0'; 35 35 36 private static $version = '2.4. 5';36 private static $version = '2.4.6'; 37 37 38 38 function __construct() -
code-injection/trunk/includes/code-type.php
r2387571 r2442619 114 114 $year = intval( $start->format("Y") ); 115 115 116 $month = intval( $start->format(" j") );117 118 $length = cal_days_in_month(CAL_GREGORIAN, $month, $year);119 120 $bcDataHolder = array_fill(0, $length -1, [116 $month = intval( $start->format("m") ); 117 118 $length = intval(date('t', mktime(0, 0, 0, $month, 1, $year))); 119 120 $bcDataHolder = array_fill(0, $length , [ 121 121 "value" => 0 122 122 ]); -
code-injection/trunk/languages/code-injection.pot
r2387571 r2442619 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Code Injection 2.4. 5\n"5 "Project-Id-Version: Code Injection 2.4.6\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/code-injection\n" 7 7 "Last-Translator: \n" -
code-injection/trunk/readme.txt
r2387571 r2442619 3 3 Tags: code, snippets, injection 4 4 Requires at least: 4.5.0 5 Tested up to: 5. 4.26 Stable tag: 2.4. 55 Tested up to: 5.6.0 6 Stable tag: 2.4.6 7 7 License: MIT License 8 8 License URI: https://github.com/Rmanaf/wp-code-injection/blob/master/LICENSE
Note: See TracChangeset
for help on using the changeset viewer.