Changeset 647448
- Timestamp:
- 01/03/2013 01:53:03 PM (13 years ago)
- File:
-
- 1 edited
-
kickpress/trunk/kickpress-api.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kickpress/trunk/kickpress-api.php
r647222 r647448 2865 2865 ); 2866 2866 } else { 2867 $bookmark->id = kickpress_insert_bookmark( $bookmark->post_id );2867 $bookmark->id = (int) kickpress_insert_bookmark( $bookmark->post_id ); 2868 2868 2869 2869 $this->action_results['messages']['bookmarks'][] = 'Bookmark Created'; … … 2894 2894 2895 2895 // using low-level form to force date 2896 $note->id = kickpress_insert_private_comment( $note->post_id, array(2896 $note->id = (int) kickpress_insert_private_comment( $note->post_id, array( 2897 2897 'comment_date' => $date, 2898 2898 'comment_title' => $note->title,
Note: See TracChangeset
for help on using the changeset viewer.