ClearFoundation Tracker - ClearOS
View Issue Details
0001943ClearOSapp-users - User Managerpublic2014-09-02 09:512014-12-23 16:15
bchambers 
user2 
normalmajoralways
closedfixed 
6.6.0 Beta 2 
6.6.0 Beta 2 
0001943: Editing of users not possible
Version 1.0.6-1 of app-users in updates-testing repo sets 'no_action' option for a licensing warning (eg. 2 Zarafa CAL remaining), but does not unset this parameter when used again for the users table.

This prevents the Edit/Delete buttons from displaying.

I doubt this was intended behaviour. Unset these variables after use:

if (!empty($warning_items)) {
        // TODO: a nice warning icon would be nice
        $headers = array(
            lang('base_app'),
            lang('base_subscription')
        );

        $options['default_rows'] = 50;
        $options['sort'] = FALSE;
        $options['no_action'] = TRUE;

        echo summary_table(
            lang('base_subscription_warnings'),
            array(),
            $headers,
            $warning_items,
            $options
        );
        unset($options); // <------------ NEW
    }

No tags attached.
Issue History
2014-09-02 09:51bchambersNew Issue
2014-09-02 11:31user2Note Added: 0001288
2014-09-02 11:31user2Statusnew => confirmed
2014-09-02 11:31user2Product Version6.5.0 Updates => 6.6.0 Beta 2
2014-09-02 11:32user2Statusconfirmed => resolved
2014-09-02 11:32user2Fixed in Version => 6.6.0 Beta 2
2014-09-02 11:32user2Resolutionopen => fixed
2014-09-02 11:32user2Assigned To => user2
2014-12-23 16:15user2Statusresolved => closed

Notes
(0001288)
user2   
2014-09-02 11:31   
It looks like this was one fix that was missed in the SVN to GIT conversion. This was already fixed in SVN: http://code.clearfoundation.com/svn/diff.php?repname=ClearOS&path=%2Fwebconfig%2Fapps%2Fusers%2Ftrunk%2Fviews%2Fsummary.php&rev=6805&peg=6805 [^]

The bug only exists "updates-testing" (6.6.0 Beta 1)