Skip to content

Commit

Permalink
Fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mystralkk committed Apr 11, 2022
1 parent 2d2aaab commit a3cfdeb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion system/classes/Locale.php
Original file line number Diff line number Diff line change
Expand Up @@ -538,6 +538,6 @@ public function getDateFormatOptions($selectedDfId, $asArray = false)
}


return $asArray ? $options : implode("\n", $options) . "\n";
return $asArray ? $options : implode(PHP_EOL, $options) . PHP_EOL;
}
}
2 changes: 1 addition & 1 deletion system/lib-database.php
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ function DB_delete($table, $id, $value, $return_page = '')
* @param string $selection Where clause to use in SQL
* @param mixed $defaultValue will be returned when there is no row in the dataset
* @return mixed Returns value sought
* @note $defaultValue argument since Geeklog 2,2,1
* @note $defaultValue argument since Geeklog 2.2.1
*/
function DB_getItem($table, $what, $selection = '', $defaultValue = false)
{
Expand Down

0 comments on commit a3cfdeb

Please sign in to comment.