@support
It should work ok, if you simply rename folder name, but there are references to "oc-admin" i.e. in hDefines.php to backoffice URL:
function osc_admin_base_url($with_index = false) {
$path = osc_base_url() . 'oc-admin/';
// add the index.php if it's true
if($with_index) {
$path .= 'index.php';
}
return osc_apply_filter('admin_base_url', $path, $with_index);
}
It would be nice feature in future, but keep in mind that changing oc-admin may lead to problems with plugins... problems that they refer to oc-admin in their configuration pages.