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:
friendica
2012-07-30 18:51:44 -07:00
parent 194c52aee5
commit 02cc436ec7
12 changed files with 347 additions and 3 deletions

View 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();