Browse Source

allow - in theme names

pull/40/head
Savetheinternet 13 years ago
parent
commit
123928cdad
  1. 2
      mod.php

2
mod.php

@ -324,7 +324,7 @@
'mod'=>true
)
);
} elseif(preg_match('/^\/themes\/(\w+)\/rebuild$/', $query, $match)) {
} elseif(preg_match('/^\/themes\/([\w\-]+)\/rebuild$/', $query, $match)) {
if(!hasPermission($config['mod']['themes'])) error($config['error']['noaccess']);
rebuildTheme($match[1], 'all');

Loading…
Cancel
Save