Reformat code

This commit is contained in:
ruan 2015-10-09 15:09:42 +02:00
parent 29f7008f7d
commit 7473a0916a

View File

@ -235,7 +235,6 @@ class Page {
* @param row * @param row
* @return string * @return string
*/ */
public
function expiry($row) { function expiry($row) {
if ($this->type === "kick") { if ($this->type === "kick") {
return "N/A"; return "N/A";
@ -366,12 +365,10 @@ class Page {
include_once './includes/footer.php'; include_once './includes/footer.php';
} }
public
function table_begin() { function table_begin() {
echo '<table class="table table-striped table-bordered table-condensed">'; echo '<table class="table table-striped table-bordered table-condensed">';
} }
public
function table_end($clicky = true) { function table_end($clicky = true) {
echo '</table>'; echo '</table>';
if ($clicky) { if ($clicky) {
@ -382,7 +379,6 @@ class Page {
/** /**
* @param $info * @param $info
*/ */
public
function set_info($info) { function set_info($info) {
$this->type = $info['type']; $this->type = $info['type'];
$this->table = $info['table']; $this->table = $info['table'];