1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Allow developer to use hyphens in plugin title.

This commit is contained in:
Cameron
2015-04-16 17:05:42 -07:00
parent dfd1b6bce4
commit 6783165b72

View File

@@ -2538,7 +2538,7 @@ class pluginBuilder
case 'main-name':
$help = "The name of your plugin. (Must be written in English)";
$required = true;
$pattern = "[A-Za-z0-9 ]*";
$pattern = "[A-Za-z0-9 -]*";
$xsize = 'medium';
break;