Make WordPress Core

Ticket #27646: 27646.patch

File 27646.patch, 1.5 KB (added by vancoder, 11 years ago)

Correcting notation syntax, making descriptions more consistent

  • /Users/grantmangham/Development/vagrant-local/www/wordpress-trunk/wp-admin/includes/

    # This patch file was generated by NetBeans IDE
    # This patch can be applied using context Tools: Apply Diff Patch action on respective folder.
    # It uses platform neutral UTF-8 encoding.
    # Above lines and this line are ignored by the patching process.
    old new  
    15591559        /**
    15601560         * Filter the dbDelta queries.
    15611561         *
    1562          * Apply filters to dbDelta queries that are run for upgrade.
     1562         * Filter the dbDelta queries that will be run for table creation or updating.
    15631563         *
    15641564         * @since 3.3.0
    15651565         *
    1566          * @param array $queries {
    1567          *              Array of queries to be applied to database during upgrade.
    1568          *
    1569          *              @type string
    1570          * }
     1566         * @param array $queries An array of dbDelta queries.
    15711567         */
    15721568        $queries = apply_filters( 'dbdelta_queries', $queries );
    15731569
     
    15981594         *
    15991595         * @since 3.3.0
    16001596         *
    1601          * @param array $cqueries {
    1602          *              Array of queries to be applied to database during upgrade.
    1603          *
    1604          *              @type string
    1605          * }
     1597         * @param array $cqueries An array of dbDelta create queries.
    16061598         */
    16071599        $cqueries = apply_filters( 'dbdelta_create_queries', $cqueries );
    16081600
     
    16131605         *
    16141606         * @since 3.3.0
    16151607         *
    1616          * @param array $iqueries {
    1617          *              Array of queries to be applied to database during upgrade.
    1618          *
    1619          *              @type string
    1620          * }
     1608         * @param array $iqueries An array of dbDelta insert queries.
    16211609         */
    16221610        $iqueries = apply_filters( 'dbdelta_insert_queries', $iqueries );
    16231611