summaryrefslogtreecommitdiff
path: root/includes/model/EventConfig_model.php
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-01-14 13:32:57 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2018-01-14 13:32:57 +0100
commit0e8cc2f0a73085170df45c6a40e8f3df06a6af51 (patch)
treea38b1c1d7da28f4c95b201ab32d370916e749832 /includes/model/EventConfig_model.php
parentd4b36e9bad4c9d64447f053ec19a9f600888b2fe (diff)
database: integrated illuminate/database do Db class, removed unused methods
Diffstat (limited to 'includes/model/EventConfig_model.php')
-rw-r--r--includes/model/EventConfig_model.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/model/EventConfig_model.php b/includes/model/EventConfig_model.php
index 646d19c5..8a29482b 100644
--- a/includes/model/EventConfig_model.php
+++ b/includes/model/EventConfig_model.php
@@ -21,7 +21,7 @@ function EventConfig()
* @param int $event_end_date
* @param int $teardown_end_date
* @param string $event_welcome_msg
- * @return int Rows updated
+ * @return bool
*/
function EventConfig_update(
$event_name,
@@ -54,7 +54,7 @@ function EventConfig_update(
);
}
- return DB::update('
+ return (bool)DB::update('
UPDATE `EventConfig` SET
`event_name` = ?,
`buildup_start_date` = ?,