The permissions link, and UI for configuration options don't show up with Drupal 7.
Will attach a patch shortly.

Comments

ntigh52’s picture

Hi Jason,
I think that its the same problem here.
Hope there would be a patch soon.
Thanks.

ntigh52’s picture

Status: Active » Needs review

I dont know how to create a patch but I fixed it.
in session_limit.module file in line 76:

 $items['admin/people/session_limit'] = array(
    'title' => 'Session limit',
    'description' => 'Configure session limits.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array('session_limit_settings'),
    'access arguments' => array('administer site configuration'),
    'type' => MENU_NORMAL_ITEM,
  );

The last line:

 'type' => MENU_NORMAL_ITEM,

wrong
need to change it to

    'type' => MENU_LOCAL_TASK,

the result:

  $items['admin/people/session_limit'] = array(
    'title' => 'Session limit',
    'description' => 'Configure session limits.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array('session_limit_settings'),
    'access arguments' => array('administer site configuration'),
    'type' => MENU_LOCAL_TASK,
  );

In fact I don't understand why with 'MENU_NORMAL_ITEM' it's work fine on online webserver, but not in localhost...
The 'MENU_LOCAL_TASK' works fine Both, also on online webserver and also in localhost...
Thanks.

deekayen’s picture

Status: Needs review » Fixed

I didn't make it a task, but I did move it over to the people section in configuration. I think that should fix it.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.