Merge "fix some spacing"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Thu, 7 Mar 2013 17:13:27 +0000 (17:13 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Thu, 7 Mar 2013 17:13:27 +0000 (17:13 +0000)
13 files changed:
1  2 
includes/GlobalFunctions.php
includes/MimeMagic.php
includes/User.php
includes/WikiPage.php
includes/Xml.php
includes/db/Database.php
includes/media/BitmapMetadataHandler.php
includes/media/Exif.php
includes/media/FormatMetadata.php
includes/media/IPTC.php
includes/media/MediaHandler.php
includes/media/XMP.php
includes/media/XMPValidate.php

Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
@@@ -63,19 -63,19 +63,19 @@@ class XMPReader 
        protected $items;
  
        /**
 -      * These are various mode constants.
 -      * they are used to figure out what to do
 -      * with an element when its encountered.
 -      *
 -      * For example, MODE_IGNORE is used when processing
 -      * a property we're not interested in. So if a new
 -      * element pops up when we're in that mode, we ignore it.
 -      */
 +       * These are various mode constants.
 +       * they are used to figure out what to do
 +       * with an element when its encountered.
 +       *
 +       * For example, MODE_IGNORE is used when processing
 +       * a property we're not interested in. So if a new
 +       * element pops up when we're in that mode, we ignore it.
 +       */
        const MODE_INITIAL = 0;
-       const MODE_IGNORE  = 1;
-       const MODE_LI      = 2;
+       const MODE_IGNORE = 1;
+       const MODE_LI = 2;
        const MODE_LI_LANG = 3;
-       const MODE_QDESC   = 4;
+       const MODE_QDESC = 4;
  
        // The following MODE constants are also used in the
        // $items array to denote what type of property the item is.
        const NS_RDF = 'http://www.w3.org/1999/02/22-rdf-syntax-ns#';
        const NS_XML = 'http://www.w3.org/XML/1998/namespace';
  
        /**
 -      * Constructor.
 -      *
 -      * Primary job is to initialize the XMLParser
 -      */
 +       * Constructor.
 +       *
 +       * Primary job is to initialize the XMLParser
 +       */
        function __construct() {
  
                if ( !function_exists( 'xml_parser_create_ns' ) ) {
Simple merge