Plugin Directory

Changeset 2506428


Ignore:
Timestamp:
03/31/2021 06:06:36 AM (5 years ago)
Author:
wordpressheroes
Message:

2.0.8

Location:
wp-hourly
Files:
69 added
3 edited

Legend:

Unmodified
Added
Removed
  • wp-hourly/trunk/README.md

    r2502790 r2506428  
    9595
    9696== Changelog ==
     97= 2.0.8 March 31, 2021 =
     98* fixed a bug where customers could see other people's reports
    9799= 2.0.7 March 24, 2021 =
    98100* fixed various bugs
  • wp-hourly/trunk/readme.txt

    r2502790 r2506428  
    9595
    9696== Changelog ==
     97= 2.0.8 March 31, 2021 =
     98* fixed a bug where customers could see other people's reports
    9799= 2.0.7 March 24, 2021 =
    98100* fixed various bugs
  • wp-hourly/trunk/wp-hourly.php

    r2502790 r2506428  
    66Description: WP HOURLY allows you to track billable time and have your customers pay you for it through your WooCommerce website. It is ideal for Freelancers and Agencies alike, giving you to ability to create tasks and assign them to your team members (Employees). An Employee can then submit time records which will show up in the My Account section of your WooCommerce website. The plugin also features extensive reports as well.
    77Author: SUPER WP HEROES
    8 Version: 2.0.7
     8Version: 2.0.8
    99Author URI: https://wphourly.com
    1010Requires at least: 4.5
     
    2929
    3030define('WP_HOURLY', true);
    31 define('WPH_VERSION', '2.0.7');
     31define('WPH_VERSION', '2.0.8');
    3232
    3333
     
    449449    }
    450450
    451     if (current_user_can('employee')) {
     451    if ((current_user_can('employee') || current_user_can('customer')) && !current_user_can('administrator')) {
    452452        echo '<input type="hidden" name="report_select_user" value="' . get_current_user_id() . '" />';
    453453        echo '<input type="hidden" name="return_view" value="tasks-table" />';
Note: See TracChangeset for help on using the changeset viewer.