mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
remove trailing ?> in the end of php files
This commit is contained in:
parent
05b49d30d8
commit
c937596d43
10 changed files with 0 additions and 21 deletions
|
|
@ -14,7 +14,6 @@ insert_final_newline = true
|
|||
[*.php]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
insert_final_newline = false
|
||||
|
||||
# temporary. spaces will be used later.
|
||||
[*.js]
|
||||
|
|
|
|||
|
|
@ -950,7 +950,3 @@ function getUserListsSimple()
|
|||
}
|
||||
return $a;
|
||||
}
|
||||
|
||||
|
||||
|
||||
?>
|
||||
|
|
@ -157,5 +157,3 @@ function utf8chunks($text, $chunklen=75, $delimiter="\r\n\t")
|
|||
if($s != '') $a[] = $s;
|
||||
return implode($delimiter, $a);
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -140,5 +140,3 @@ function printRss($data, $listData)
|
|||
header("Content-type: text/xml; charset=utf-8");
|
||||
print $s;
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -305,5 +305,3 @@ class Config
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -184,5 +184,3 @@ class Database_Mysql extends Database_Abstract
|
|||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -151,5 +151,3 @@ class Database_Mysql extends Database_Abstract
|
|||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -177,5 +177,3 @@ class Database_Sqlite3 extends Database_Abstract
|
|||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -172,5 +172,3 @@ function isValidSignature(string $signature, string $id, string $key, string $sa
|
|||
if ( hash_equals($signature, idSignature($id, $key, $salt)) ) return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -284,5 +284,3 @@ function logAndDie($userText, $errText = null)
|
|||
}
|
||||
exit(1);
|
||||
}
|
||||
|
||||
?>
|
||||
Loading…
Reference in a new issue