summaryrefslogtreecommitdiffstats
path: root/system/libraries/Table.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-02-11 16:15:07 +0100
committerAndrey Andreev <narf@devilix.net>2014-02-11 16:15:07 +0100
commita49c8adbc24d904b3473cc301f0f56818acdddcb (patch)
tree2529ab952a74f1b1686e27544be283a833830809 /system/libraries/Table.php
parent05983fcb5b8f04fb895c025e28ef6ffc44a5f602 (diff)
Change CI_Table:: to NULL
Because semantics
Diffstat (limited to 'system/libraries/Table.php')
-rw-r--r--system/libraries/Table.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/system/libraries/Table.php b/system/libraries/Table.php
index 58016e9b8..1a3aa9a2b 100644
--- a/system/libraries/Table.php
+++ b/system/libraries/Table.php
@@ -93,7 +93,7 @@ class CI_Table {
*
* @var function
*/
- public $function = FALSE;
+ public $function = NULL;
/**
* Set the template from the table config file if it exists
@@ -138,10 +138,10 @@ class CI_Table {
*
* Can be passed as an array or discreet params
*
- * @param mixed
+ * @param mixed $array
* @return CI_Table
*/
- public function set_heading($args = array())
+ public function set_heading($args = array(), $attributes = array())
{
$args = func_get_args();
$this->heading = $this->_prep_args($args);
@@ -316,9 +316,9 @@ class CI_Table {
$this->_compile_template();
// Validate a possibly existing custom cell manipulation function
- if ($this->function !== FALSE && ! is_callable($this->function))
+ if (isset($this->function) && ! is_callable($this->function))
{
- $this->function = FALSE;
+ $this->function = NULL;
}
// Build the table!
@@ -391,7 +391,7 @@ class CI_Table {
{
$out .= $this->empty_cells;
}
- elseif ($this->function !== FALSE)
+ elseif (isset($this->function))
{
$out .= call_user_func($this->function, $cell);
}