Completed
Pull Request — master (#2)
by Michael
07:48
created
include/plugins/frames.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
 	var $sameOrigin;
10 10
 	
11 11
 	/**
12
-	* @param bool allow running from the same origin only
13
-	*/
12
+	 * @param bool allow running from the same origin only
13
+	 */
14 14
 	function AdminerFrames($sameOrigin = false) {
15 15
 		$this->sameOrigin = $sameOrigin;
16 16
 	}
Please login to merge, or discard this patch.
include/plugins/login-table.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@
 block discarded – undo
18 18
 	var $database;
19 19
 	
20 20
 	/** Set database of login table
21
-	* @param string
22
-	*/
21
+	 * @param string
22
+	 */
23 23
 	function AdminerLoginTable($database) {
24 24
 		$this->database = $database;
25 25
 	}
Please login to merge, or discard this patch.
include/plugins/slugify.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,9 +9,9 @@
 block discarded – undo
9 9
 	var $from, $to;
10 10
 	
11 11
 	/**
12
-	* @param string find these characters ...
13
-	* @param string ... and replace them by these
14
-	*/
12
+	 * @param string find these characters ...
13
+	 * @param string ... and replace them by these
14
+	 */
15 15
 	function AdminerSlugify($from = 'áčďéěíňóřšťúůýž', $to = 'acdeeinorstuuyz') {
16 16
 		$this->from = $from;
17 17
 		$this->to = $to;
Please login to merge, or discard this patch.
index.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 
22 22
 $moduleDirName = basename(__DIR__);
23 23
 if (!is_object($xoopsUser) || !is_object($xoopsModule) || !$xoopsUser->isAdmin($xoopsModule->mid())) {
24
-    exit(_NOPERM);
24
+	exit(_NOPERM);
25 25
 }
26 26
 $xoopsOption['template_main'] = $moduleDirName . '_index.tpl';
27 27
 
Please login to merge, or discard this patch.
xoops_version.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,8 +41,8 @@
 block discarded – undo
41 41
 $modversion['min_xoops']           = '2.5.8';
42 42
 $modversion['min_admin']           = '1.2';
43 43
 $modversion['min_db']              = array(
44
-    'mysql'  => '5.0.7',
45
-    'mysqli' => '5.0.7'
44
+	'mysql'  => '5.0.7',
45
+	'mysqli' => '5.0.7'
46 46
 );
47 47
 
48 48
 // Menu
Please login to merge, or discard this patch.
dump.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 defined('XOOPS_ROOT_PATH') || include dirname(dirname(__DIR__)) . '/mainfile.php';
21 21
 
22 22
 if (!is_object($xoopsUser) || !is_object($xoopsModule) || !$xoopsUser->isAdmin($xoopsModule->mid())) {
23
-    exit(_NOPERM);
23
+	exit(_NOPERM);
24 24
 }
25 25
 include(XOOPS_ROOT_PATH . '/header.php');
26 26
 include __DIR__ . '/include/bigdump.php';
Please login to merge, or discard this patch.
admin/getBigdump.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 //global $xoopsUser, $xoopsModule;
24 24
 
25 25
 if (!is_object($xoopsUser) || !is_object($xoopsModule) || !$xoopsUser->isAdmin($xoopsModule->mid())) {
26
-    exit(_NOPERM);
26
+	exit(_NOPERM);
27 27
 }
28 28
 //include(XOOPS_ROOT_PATH."/header.php");
29 29
 include dirname(__DIR__) . '/include/bigdump.php';
Please login to merge, or discard this patch.
admin/dump.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 xoops_cp_header();
23 23
 
24 24
 if (!is_object($xoopsUser) || !is_object($xoopsModule) || !$xoopsUser->isAdmin($xoopsModule->mid())) {
25
-    exit(_NOPERM);
25
+	exit(_NOPERM);
26 26
 }
27 27
 
28 28
 $aboutAdmin = new ModuleAdmin();
Please login to merge, or discard this patch.
admin/mysql.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 xoops_cp_header();
22 22
 
23 23
 if (!is_object($xoopsUser) || !is_object($xoopsModule) || !$xoopsUser->isAdmin($xoopsModule->mid())) {
24
-    exit(_NOPERM);
24
+	exit(_NOPERM);
25 25
 }
26 26
 
27 27
 $aboutAdmin = new ModuleAdmin();
Please login to merge, or discard this patch.