Added urlify to try and create webbie auto-suggestions out of whatever unicode stuff gets thrown in as a name. Currently this will only work for latin/european/cyrillic/russian, but possible to extend to ideographic forms.
This commit is contained in:
9
library/urlify/tests/bootstrap.php
Normal file
9
library/urlify/tests/bootstrap.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
set_error_handler(function () {
|
||||
echo file_get_contents(dirname(__DIR__).'/INSTALL');
|
||||
exit(1);
|
||||
}, E_ALL);
|
||||
|
||||
require_once dirname(__DIR__) . '/vendor/autoload.php';
|
||||
|
||||
restore_error_handler();
|
||||
Reference in New Issue
Block a user