Make WordPress Core

Ticket #25440: translate_smiley_doc.patch

File translate_smiley_doc.patch, 709 bytes (added by toscho, 12 years ago)

Fix doc block

  • formatting.php

     
    17441744/**
    17451745 * Convert one smiley code to the icon graphic file equivalent.
    17461746 *
     1747 * Callback handler for convert_smilies.
    17471748 * Looks up one smiley code in the $wpsmiliestrans global array and returns an
    17481749 * <img> string for that smiley.
    17491750 *
    17501751 * @global array $wpsmiliestrans
    17511752 * @since 2.8.0
     1753 * @see convert_smilies()
    17521754 *
    1753  * @param string $smiley Smiley code to convert to image.
     1755 * @param array $smiley Smiley code to convert to image.
    17541756 * @return string Image string for smiley.
    17551757 */
    17561758function translate_smiley($smiley) {