Changeset 8691 for trunk/wp-admin/includes/comment.php
- Timestamp:
- 08/20/2008 09:42:31 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/comment.php
r8645 r8691 127 127 } 128 128 129 function wp_get_inbox_items() { 130 $r = array(); 131 $r[] = (object) array( 132 'text' => 'Your take on the evolution of Dr. Who is ridiculous. The fact that the actors are getting younger has nothing to do with Gallifrey lore, and everything to do with celebrity culture.', 133 'date' => '2008/09/07', 134 'time' => '4:19pm', 135 'from' => 'I. monroe', 136 'type' => 'comment', 137 'parent' => '1', 138 'href' => '#' 139 ); 140 141 $r[] = (object) array( 142 'text' => 'Announcement: WordPress introduces new features for mobile blogging.', 143 'date' => '2008/09/06', 144 'time' => '3:24pm', 145 'from' => 'WordPress.org', 146 'type' => 'announcement', 147 'parent' => '0', 148 'href' => '#' 149 ); 150 151 $r[] = (object) array( 152 'text' => 'Great review. You left out a few things, but maybe you were trying to avoid spoilers? Will check back later in a week.', 153 'date' => '2008/09/06', 154 'time' => '2:46pm', 155 'from' => 'matt', 156 'type' => 'comment', 157 'parent' => '2', 158 'href' => '#' 159 ); 160 161 $r[] = (object) array( 162 'text' => 'nice picture!', 163 'date' => '2008/08/05', 164 'time' => '9:17am', 165 'from' => 'caped crusader', 166 'type' => 'comment', 167 'parent' => '3', 168 'href' => '#' 169 ); 170 171 return $r; 172 } 173 129 174 ?>
Note: See TracChangeset
for help on using the changeset viewer.