jonathangeiger / kohana-jelly

See the link below for the most up-to-date code
https://github.com/creatoro/jelly
MIT License
146 stars 34 forks source link

File field still returning the entire path instead of the filename only #85

Closed ginad closed 14 years ago

ginad commented 14 years ago

just a minor correction :)

if (is_string($value)) { $value = trim($filename, DIRECTORY_SEPARATOR); }

it should be

if (is_string($value)) { $value = trim($value, DIRECTORY_SEPARATOR); }

Thanks guys you're doing great :)

jonathangeiger commented 14 years ago

Closed by a3b0e6c8d75d146105795de5ddcfd20c2e67636b. Thanks ginad!