Changeset 12615
- Timestamp:
- 06/02/2023 02:40:46 PM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-user-notes.php
r12161 r12615 87 87 /** 88 88 * Saves a note to a users meta data. 89 * 89 * 90 90 * @param int $user_id The user ID. 91 91 * @param string $note_text The note text to add. … … 148 148 /** 149 149 * Saves a note to a users meta data. Suffixes to previous user note if by same moderator within a timeframe. 150 * 150 * 151 151 * @param int $user_id The user ID. 152 152 * @param string $note_text The note text to add. … … 269 269 $user_notes = array(); 270 270 } 271 272 // Reverse the order, so that the newer notes are displayed first. 273 $user_notes = array_reverse( $user_notes, true ); 271 274 272 275 $note_id = isset( $_GET['note_id'] ) ? (int) $_GET['note_id'] : 0; … … 591 594 } 592 595 593 596 594 597 /** 595 598 * Displays existing notes and the form for adding a new note in user edit profile.
Note: See TracChangeset
for help on using the changeset viewer.