Skip to content

Commit a874b8c

Browse files
committed
Standardize indentation whitespace
Use tab indentation instead of mixed space-tab
1 parent 4d4fdf4 commit a874b8c

File tree

3 files changed

+210
-210
lines changed

3 files changed

+210
-210
lines changed

demos/demo.dirscan.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ private function getDirs($root) {
139139
break;
140140
default: // scan 4 directories deep
141141
if (!is_dir($root)) {
142-
return null;
142+
return null;
143143
}
144144
$dirs = array_merge(glob($root.'/*', GLOB_ONLYDIR), glob($root.'/*/*', GLOB_ONLYDIR), glob($root.'/*/*/*', GLOB_ONLYDIR), glob($root.'/*/*/*/*', GLOB_ONLYDIR), glob($root.'/*/*/*/*/*', GLOB_ONLYDIR), glob($root.'/*/*/*/*/*/*', GLOB_ONLYDIR), glob($root.'/*/*/*/*/*/*/*', GLOB_ONLYDIR));
145145
break;
@@ -216,7 +216,7 @@ function scan_files($dir, $match, $cache='sqlite3', $opt=array('table'=>'getid3_
216216
echo ' Scanning: '.$d."\n";
217217
$search = self::type_brace($d, $match);
218218
if ($search !== null) {
219-
$files = self::file_check($search);
219+
$files = self::file_check($search);
220220
if ($files !== null) {
221221
foreach ($files as $f) {
222222
echo ' * Analyzing '.$f.' '."\n";

demos/getid3.css

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -126,22 +126,22 @@ td.dump_boolean {
126126
*/
127127

128128
.tooltip {
129-
font: 9pt sans-serif;
130-
background: #ffffe1;
131-
color: black;
132-
border: black 1px solid;
133-
margin: 2px;
134-
padding: 7px;
135-
position: absolute;
136-
top: 10px;
137-
left: 10px;
138-
z-index: 10000;
139-
visibility: hidden;
129+
font: 9pt sans-serif;
130+
background: #ffffe1;
131+
color: black;
132+
border: black 1px solid;
133+
margin: 2px;
134+
padding: 7px;
135+
position: absolute;
136+
top: 10px;
137+
left: 10px;
138+
z-index: 10000;
139+
visibility: hidden;
140140
}
141141

142142
.tooltip p {
143-
margin-top: -2px;
144-
margin-bottom: 4px;
143+
margin-top: -2px;
144+
margin-bottom: 4px;
145145
}
146146

147147

0 commit comments

Comments
 (0)