_blogapi_blogid

5 blogapi.module _blogapi_blogid($id)

3 calls to _blogapi_blogid()

File

modules/blogapi/blogapi.module, line 912
Enable users to post using applications that support XML-RPC blog APIs.

Code

function _blogapi_blogid($id) {
  if (is_numeric($id)) {
    return 'blog';
  }
  else {
    return $id;
  }
}
Login or register to post comments