I’m not following what you mean …..
If a user at level 8 can modify, then care needs to be taken as to who is promoted to that level.
The access that users get is not easy to modify.
Thread Starter
ihad
(@ihad)
a level 8 user cannot modify plugins, hence either that error message is misleading or there’s something wrong with the php code handling those rights.
From plugins.php:
if ($user_level < 9) // Must be at least level 9
die (__("Sorry, you must be at least a level 8 user to modify plugins."));
So yes, you have a point. Simply change that block of code to read:
if ($user_level < 9) // Must be at least level 9
die (__("Sorry, you must be at least a level 9 user to modify plugins."));
Thread Starter
ihad
(@ihad)
hehe, indeed I have a point! 😉
most of the time when I post I do.
Even if it’s a veeeeeeeeeeeeeery small one.
Anyway, thanks for the belated answer. I bet the devs already corrected that (or will soon).
Cheers
ai.