Changeset 46426
- Timestamp:
- 05/17/08 04:36:00 (2 months ago)
- Files:
-
- events-calendar/trunk/ec_calendar.class.php (modified) (1 diff)
- events-calendar/trunk/events-calendar.php (modified) (1 diff)
- events-calendar/trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
events-calendar/trunk/ec_calendar.class.php
r46359 r46426 36 36 */ 37 37 function displayWidget($year, $month, $days = array(), $day_name_length = 1) { 38 $ecFile = TEMPLATEPATH. "/style.css";38 $ecFile = get_bloginfo('stylesheet_directory') . "/style.css"; 39 39 $ecData = file_get_contents($ecFile, 0, null); 40 if(strpos($ecData, "#today") === false) 40 if(strpos($ecData, "#today") === false) { 41 41 $todaySet = false; 42 else 42 echo "false"; 43 } else { 43 44 $todaySet = true; 45 echo "true"; 46 } 44 47 $js = new EC_JS(); 45 48 $first_day = get_option('start_of_week'); events-calendar/trunk/events-calendar.php
r46359 r46426 4 4 Plugin URI: http://www.lukehowell.com/events-calendar/ 5 5 Description: There are options under the widget options to specify the view of the calendar in the sidebar. The widget can be a list for upcoming events or a calendar. If you do not have a widget ready theme then you can place '<?php sidebarEventsCalendar();?>' in the sidebar file. If you want to display a large calendar in a post or a page, simply place "[[EventsCalendarLarge]]" in the html of the post or page. Make sure to leave off the quotes. 6 Version: 6. 26 Version: 6.3 7 7 Author: Luke Howell 8 8 Author URI: http://www.lukehowell.com/ events-calendar/trunk/readme.txt
r46359 r46426 1 1 === Events Calendar === 2 2 3 Contributors: snumb130, bbodine1 3 Contributors: snumb130, bbodine1, ronbme 4 4 Donate link: http://www.lukehowell.com/donate 5 Version: 6. 25 Version: 6.3 6 6 Tags: widget, admin, sidebar, plugin, javascript, date, time, calendar, thickbox, jquery, tooltip, ajax 7 7 Requires at least: 2.5 8 8 Tested up to: 2.5.1 9 Stable tag: 6. 29 Stable tag: 6.3 10 10 11 11 == Description == … … 28 28 29 29 <pre><code> 30 Verison 6.3 31 Fixed major bug pointed out by Ron. When month was changing, calendar was disappearing. This is fixed. 30 32 Version 6.2 31 33 Ron added css for high lighting the current day in large calendar. This can be edited in the events-calendar.css file. Id is #todayLarge
