Changeset 2416483
- Timestamp:
- 11/11/2020 09:58:33 AM (5 years ago)
- Location:
- availability-calendar/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
admin/includes/owac-settings.php (modified) (1 diff)
-
availabilitycalendar.php (modified) (2 diffs)
-
public/includes/frontend.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
availability-calendar/trunk/README.txt
r2373547 r2416483 6 6 Requires PHP : 5.4.4 7 7 Tested up to: 5.5 8 Stable tag: 1.1. 78 Stable tag: 1.1.8 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 67 67 68 68 == Changelog == 69 = 1.1.8= 70 * New: Number Of Months To Display add 5 year 71 69 72 = 1.1.7= 70 73 * ERROR: css issue updated. -
availability-calendar/trunk/admin/includes/owac-settings.php
r2349708 r2416483 307 307 <option value="<?php esc_html_e( $i.'m', 'availability-calendar' ); ?>" <?php esc_html_e( $selected, 'availability-calendar' ); ?>><?php esc_html_e( $i.' month(s)', 'availability-calendar' ); ?> </option> 308 308 <?php } ?> 309 <?php for($j=1; $j <= 3; $j++){ ?>309 <?php for($j=1; $j <= 5; $j++){ ?> 310 310 <?php $selected = (isset( $this->settings_options['display_calendar_month'] ) && $this->settings_options['display_calendar_month'] === ''.$j.'y') ? 'selected' : '' ; ?> 311 311 <option value="<?php esc_html_e( $j.'y', 'availability-calendar' ); ?>" <?php esc_html_e( $selected, 'availability-calendar' ); ?>><?php esc_html_e( $j.' year(s)', 'availability-calendar' ); ?> </option> -
availability-calendar/trunk/availabilitycalendar.php
r2373547 r2416483 7 7 * Description: Availability Calendar Description A plugin that records post views and contains functions to easily list posts by popularity 8 8 9 * Version: 1.1. 79 * Version: 1.1.8 10 10 11 11 * Author: Offshore Web Master … … 28 28 /** 29 29 * Currently plugin version. 30 * Start at version 1.1. 730 * Start at version 1.1.8 31 31 */ 32 define( 'OWAC_VERSION', '1.1. 7' );32 define( 'OWAC_VERSION', '1.1.8' ); 33 33 34 34 /** -
availability-calendar/trunk/public/includes/frontend.php
r2349708 r2416483 96 96 97 97 case "3y": 98 $end_year=$start_year + $display_calendar_month; 99 $row = 12 * $display_calendar_month + 1; 100 break; 101 102 case "4y": 103 $end_year=$start_year + $display_calendar_month; 104 $row = 12 * $display_calendar_month + 1; 105 break; 106 107 case "5y": 98 108 $end_year=$start_year + $display_calendar_month; 99 109 $row = 12 * $display_calendar_month + 1;
Note: See TracChangeset
for help on using the changeset viewer.