11 lines
207 B
PHP
11 lines
207 B
PHP
<?php defined('SYSPATH') or die('No direct script access.');
|
|
|
|
class valid extends valid_Core {
|
|
|
|
public static function alpha($str, $utf8 = true)
|
|
{
|
|
return parent::alpha($str, $utf8);
|
|
}
|
|
|
|
}
|