Hello,
I just upgraded to PWG 2.7.4
Now the configuration plugin page for 'piwigo-openstreetmap' and 'piwigo-videojs' return 'Invalid plugin identifier'.
I am unable to access the configuration page of those plugins.
To make it work, I had to change the regexp filter in 'admin/plugin.php'
if (!preg_match('/^\w+$/', $plugin_id))
if (!preg_match('/^\S+$/', $plugin_id))
Using the maintain.class I have a similar issue, but did not find a solution yet.
Offline
oh no :-/
I made the test on piwigo.org/translate (which contains nearly all plugins) and your plugins were OK, but now I realize that your "-" are transformed into "_". This is why it worked!
I don't understand why you have a problem on maintain.class, is that a new problem in 2.7.4 ? [Subversion] r30951 only modified admin/plugin.php
I really really really don't want to publish a version 2.7.5 (it takes time...). I have to see what I can do.
Offline
\S is not good. [\w-] would be better
Offline
I chose the ugly (but fast) solution, I changed the downloadable zip file.
Offline