| 5 blogapi.module | _blogapi_blogid($id) |
File
- modules/
blogapi/ blogapi.module, line 912 - Enable users to post using applications that support XML-RPC blog APIs.
Code
<?php
function _blogapi_blogid($id) {
if (is_numeric($id)) {
return 'blog';
}
else {
return $id;
}
}
?>Login or register to post comments