Ticket #5572: collective.phpdoc.r6542.patch

File collective.phpdoc.r6542.patch, 3.8 KB (added by darkdragon, 4 years ago)

Based off of r6542

  • gettext.php

     
    11<?php 
    2 /* 
     2/** 
     3 * PHP-Gettext External Library: gettext_reader class 
     4 * 
     5 * @package External 
     6 * @subpackage PHP-gettext 
     7 * 
     8 * @internal 
    39         Copyright (c) 2003 Danilo Segan <danilo@kvota.net>. 
    410         Copyright (c) 2005 Nico Kaiser <nico@siriux.net> 
    511 
     
    391397 
    392398} 
    393399 
    394 ?> 
     400?> 
     401 No newline at end of file 
  • registration-functions.php

     
    11<?php 
    2 // Deprecated.  Use registration.php. 
     2/** 
     3 * Deprecated. Use registration.php. 
     4 * 
     5 * @package WordPress 
     6 */ 
    37_deprecated_file( basename(__FILE__), '0.0', 'registration.php' ); 
    48require_once(ABSPATH . WPINC .  '/registration.php'); 
    59?> 
  • rss-functions.php

     
    11<?php 
    2 // Deprecated.  Use rss.php instead. 
     2/** 
     3 * Deprecated.  Use rss.php instead. 
     4 * 
     5 * @package WordPress 
     6 */ 
    37 
    48_deprecated_file( basename(__FILE__), '0.0', 'rss.php' ); 
    59require_once (ABSPATH . WPINC . '/rss.php'); 
  • streams.php

     
    11<?php 
    2 /* 
     2/** 
     3 * PHP-Gettext External Library: StreamReader classes 
     4 * 
     5 * @package External 
     6 * @subpackage PHP-gettext 
     7 * 
     8 * @internal  
    39   Copyright (c) 2003, 2005 Danilo Segan <danilo@kvota.net>. 
    410 
    511   This file is part of PHP-gettext. 
     
    1824   along with PHP-gettext; if not, write to the Free Software 
    1925   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
    2026 
    21 */ 
     27 */ 
    2228 
    2329 
    2430// Simple class to wrap file streams, string streams, etc. 
  • vars.php

     
    11<?php 
     2/** 
     3 * Creates common globals for the rest of WordPress 
     4 * 
     5 * Sets $pagenow global which is the current page. Checks 
     6 * for the browser to set which one is currently being used. 
     7 * 
     8 * Detects which user environment WordPress is being used on. 
     9 * Only attempts to check for Apache and IIS. Two web servers 
     10 * with known permalink capability. 
     11 * 
     12 * @package WordPress 
     13 */ 
    214 
    315// On which page are we ? 
    416if ( is_admin() ) { 
     
    4153$is_IE = ( $is_macIE || $is_winIE ); 
    4254 
    4355// Server detection 
     56 
     57/** 
     58 * Whether the server software is Apache or something else 
     59 * @global bool $is_apache 
     60 */ 
    4461$is_apache = ((strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false) || (strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false)) ? true : false; 
     62 
     63/** 
     64 * Whether the server software is IIS or something else 
     65 * @global bool $is_IIS 
     66 */ 
    4567$is_IIS = (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== false) ? true : false; 
    4668 
    4769?> 
     70 No newline at end of file 
  • version.php

     
    11<?php 
     2/** 
     3 * This holds the version number in a separate file so we can bump it without cluttering the SVN 
     4 */ 
    25 
    3 // This holds the version number in a separate file so we can bump it without cluttering the SVN 
     6/** 
     7 * The WordPress version string 
     8 * 
     9 * @global string $wp_version 
     10 */ 
     11$wp_version = '2.4-bleeding'; 
    412 
    5 $wp_version = '2.4-bleeding'; 
     13/** 
     14 * Holds the WordPress DB revision, increments when changes are made to the WordPress DB scheme 
     15 * changes. 
     16 * 
     17 * @global int $wp_db_version 
     18 */ 
    619$wp_db_version = 6124; 
    720 
    8 ?> 
     21?> 
     22 No newline at end of file