Changeset 121 for postcomment.php
- Timestamp:
- 15/06/05 20:08:33 (4 years ago)
- Files:
-
- postcomment.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
postcomment.php
r120 r121 1 1 <?php 2 ob_start(); 2 3 include "blog.lib.php"; 3 4 … … 6 7 $blog = new blogs($blogid); 7 8 8 if($blog->newComment($postid, FALSE)) { 9 $ret = $blog->newComment($postid, FALSE); 10 if($ret[0]) { 9 11 echo "<split>OK"; 10 12 } else { 11 echo "<split>ERROR ";13 echo "<split>ERROR<split>".$ret[1]; 12 14 } 13 15 ?>
