Passed
Push — master ( 4990f6...882d2a )
by Michael
03:01
created
admin/admin_forum_prune.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -169,14 +169,14 @@  discard block
 block discarded – undo
169 169
     // Days selected by selbox (better error control :lol:)
170 170
     $days = new \XoopsFormSelect(_AM_NEWBB_PRUNE_DAYS, 'days', null, 1, false);
171 171
     $days->addOptionArray([
172
-                              604800   => _AM_NEWBB_PRUNE_WEEK,
173
-                              1209600  => _AM_NEWBB_PRUNE_2WEEKS,
174
-                              2592000  => _AM_NEWBB_PRUNE_MONTH,
175
-                              5184000  => _AM_NEWBB_PRUNE_2MONTH,
176
-                              10368000 => _AM_NEWBB_PRUNE_4MONTH,
177
-                              31536000 => _AM_NEWBB_PRUNE_YEAR,
178
-                              63072000 => _AM_NEWBB_PRUNE_2YEARS
179
-                          ]);
172
+                                604800   => _AM_NEWBB_PRUNE_WEEK,
173
+                                1209600  => _AM_NEWBB_PRUNE_2WEEKS,
174
+                                2592000  => _AM_NEWBB_PRUNE_MONTH,
175
+                                5184000  => _AM_NEWBB_PRUNE_2MONTH,
176
+                                10368000 => _AM_NEWBB_PRUNE_4MONTH,
177
+                                31536000 => _AM_NEWBB_PRUNE_YEAR,
178
+                                63072000 => _AM_NEWBB_PRUNE_2YEARS
179
+                            ]);
180 180
     $sform->addElement($days);
181 181
     // START irmtfan remove hardcode db access
182 182
     require_once $GLOBALS['xoops']->path('modules/' . $xoopsModule->getVar('dirname') . '/footer.php'); // to include js files
@@ -228,14 +228,14 @@  discard block
 block discarded – undo
228 228
 
229 229
     $hot_confirmation = new \XoopsFormSelect(_AM_NEWBB_PRUNE_HOT, 'hot', null, 1, false);
230 230
     $hot_confirmation->addOptionArray([
231
-                                          '0'  => 0,
232
-                                          '5'  => 5,
233
-                                          '10' => 10,
234
-                                          '15' => 15,
235
-                                          '20' => 20,
236
-                                          '25' => 25,
237
-                                          '30' => 30
238
-                                      ]);
231
+                                            '0'  => 0,
232
+                                            '5'  => 5,
233
+                                            '10' => 10,
234
+                                            '15' => 15,
235
+                                            '20' => 20,
236
+                                            '25' => 25,
237
+                                            '30' => 30
238
+                                        ]);
239 239
     $sform->addElement($hot_confirmation);
240 240
 
241 241
     $sform->addElement(/*$radiobox*/
Please login to merge, or discard this patch.