Skip to content
Snippets Groups Projects
Commit 2295f7cc authored by Hajo Seng's avatar Hajo Seng Committed by Robert Lange
Browse files

Add ucfirst munge option.

parent 9361020a
Branches
Tags
No related merge requests found
......@@ -393,6 +393,9 @@ class SearchHandler
$operation[1], $operation[2], $mungeValues[$mungeName]
);
break;
case 'ucfirst':
$mungeValues[$mungeName] = ucfirst($mungeValues[$mungeName]);
break;
case 'uppercase':
$mungeValues[$mungeName] = strtoupper($mungeValues[$mungeName]);
break;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment