Completed
Push — develop-3.2 ( 3685db...4cc568 )
by Matt
32:16
created
migrations/v310_m1_remove_data.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -162,13 +162,13 @@
 block discarded – undo
162 162
 			'veoh',
163 163
 
164 164
 			// These are being replaced by new BBCodes
165
-			'align=justify',	// replaced by align=
166
-			'align=left',		// replaced by align=
167
-			'align=right',		// replaced by align=
168
-			'dir=rtl',			// replaced by dir=
169
-			'marq=down',		// replaced by marq=
170
-			'marq=left',		// replaced by marq=
171
-			'marq=right',		// replaced by marq=
165
+			'align=justify', // replaced by align=
166
+			'align=left', // replaced by align=
167
+			'align=right', // replaced by align=
168
+			'dir=rtl', // replaced by dir=
169
+			'marq=down', // replaced by marq=
170
+			'marq=left', // replaced by marq=
171
+			'marq=right', // replaced by marq=
172 172
 		);
173 173
 	}
174 174
 }
Please login to merge, or discard this patch.
migrations/v322_m10_merge_duplicate_bbcodes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 		$bbcodes = [];
50 50
 		while ($row = $this->db->sql_fetchrow($result))
51 51
 		{
52
-			$variant = (substr($row['bbcode_tag'], -1) === '=') ? 'with': 'without';
52
+			$variant = (substr($row['bbcode_tag'], -1) === '=') ? 'with' : 'without';
53 53
 			$bbcode_name = rtrim($row['bbcode_tag'], '=');
54 54
 			$bbcodes[$bbcode_name][$variant] = $row;
55 55
 		}
Please login to merge, or discard this patch.