1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-04 13:47:31 +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': case 'main-name':
$help = "The name of your plugin. (Must be written in English)"; $help = "The name of your plugin. (Must be written in English)";
$required = true; $required = true;
$pattern = "[A-Za-z0-9 ]*"; $pattern = "[A-Za-z0-9 -]*";
$xsize = 'medium'; $xsize = 'medium';
break; break;