Plugin Directory

Changeset 2171048


Ignore:
Timestamp:
10/10/2019 08:54:17 AM (6 years ago)
Author:
hitcode
Message:

4.5.0

Location:
shiftcontroller/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • shiftcontroller/trunk/hc3/assets/css/hc.css

    r2154014 r2171048  
    10271027-ms-backface-visibility: initial;
    10281028backface-visibility: initial;
    1029 }​​
     1029}
  • shiftcontroller/trunk/readme.txt

    r2170467 r2171048  
    6060
    6161== Changelog ==
     62
     63= 4.5.0 =
     64* BUG: The weekly repeat function included the current day of the week even if it was unchecked (Pro Version).
     65* Removed hyphens and underscores from the abbreviated labels if the full labels contained any.
    6266
    6367= 4.4.9 =
  • shiftcontroller/trunk/sh4/shifts/view/widget.php

    r2170467 r2171048  
    183183
    184184        if( NULL !== $label ){
     185            $label = str_replace( '-', ' ', $label );
     186            $label = str_replace( '_', ' ', $label );
     187            $label = str_replace( '  ', ' ', $label );
     188            $label = str_replace( '  ', ' ', $label );
     189
    185190            $label = explode( ' ', $label );
    186191
  • shiftcontroller/trunk/shiftcontroller4.php

    r2170467 r2171048  
    44 * Plugin URI: http://www.shiftcontroller.com/
    55 * Description: Staff scheduling plugin
    6  * Version: 4.4.9
     6 * Version: 4.5.0
    77 * Author: hitcode.com
    88 * Author URI: http://www.shiftcontroller.com/
     
    1111*/
    1212
    13 define( 'SH4_VERSION', 449 );
     13define( 'SH4_VERSION', 450 );
    1414
    1515if (! defined('ABSPATH')) exit; // Exit if accessed directly
Note: See TracChangeset for help on using the changeset viewer.