* The configuration key to delete
* @return mixed
*/
- public static function del($uid,$family,$key) {
+ public static function delete($uid,$family,$key) {
global $a;
if(x($a->config[$uid][$family],$key))
/**
* @brief (Deprecated) Deletes the given key from the users's configuration.
*
- * Note: This function is deprecated. Use PConfig::del() instead.
+ * Note: This function is deprecated. Use PConfig::delete() instead.
*
* @param string $uid The user_id
* @param string $family
* @return mixed
*/
function del_pconfig($uid,$family,$key) {
- return PConfig::del($uid, $family, $key);
+ return PConfig::delete($uid, $family, $key);
}