phpdoc for wp-admin. See #7496 props santosj.

git-svn-id: https://develop.svn.wordpress.org/trunk@8645 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood
2008-08-14 06:30:38 +00:00
parent 93f3f4cdb5
commit ab17f7283c
46 changed files with 1027 additions and 167 deletions
+14
View File
@@ -1,5 +1,15 @@
<?php
/**
* {@internal Missing Short Description}}
*
* @since unknown
* @uses $wpdb
*
* @param string $comment_author
* @param string $comment_date
* @return mixed Comment ID on success.
*/
function comment_exists($comment_author, $comment_date) {
global $wpdb;
@@ -7,6 +17,10 @@ function comment_exists($comment_author, $comment_date) {
WHERE comment_author = %s AND comment_date = %s", $comment_author, $comment_date) );
}
/**
*
*
*/
function edit_comment() {
$comment_post_ID = (int) $_POST['comment_post_ID'];