summaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2012-11-04 12:31:06 +0100
committerThomas Tanghus <thomas@tanghus.net>2012-11-04 12:31:06 +0100
commite6a7bba0950688d73f52cd622bdf6ec62dff9281 (patch)
treeaec719c0af896e1f47c0475f13ed2355dbf34f4f /lib/public
parent8e5b6bf21d14b6022e543869cba503bb582b1cb5 (diff)
parent17d466b03b91ccc058fe1a88340df36c22a580c2 (diff)
downloadnextcloud-server-e6a7bba0950688d73f52cd622bdf6ec62dff9281.tar.gz
nextcloud-server-e6a7bba0950688d73f52cd622bdf6ec62dff9281.zip
Merge branch 'master' of github.com:owncloud/core into vcategories_db
Conflicts: lib/vcategories.php
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/db.php2
-rw-r--r--lib/public/util.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/public/db.php b/lib/public/db.php
index b9e56985e9d..92ff8f93a22 100644
--- a/lib/public/db.php
+++ b/lib/public/db.php
@@ -42,7 +42,7 @@ class DB {
* SQL query via MDB2 prepare(), needs to be execute()'d!
*/
static public function prepare( $query, $limit=null, $offset=null ) {
- return(\OC_DB::prepare($query,$limit,$offset));
+ return(\OC_DB::prepare($query, $limit, $offset));
}
/**
diff --git a/lib/public/util.php b/lib/public/util.php
index 38da7e82171..6ce79715b6f 100644
--- a/lib/public/util.php
+++ b/lib/public/util.php
@@ -107,8 +107,8 @@ class Util {
* @param int timestamp $timestamp
* @param bool dateOnly option to ommit time from the result
*/
- public static function formatDate( $timestamp,$dateOnly=false) {
- return(\OC_Util::formatDate( $timestamp,$dateOnly ));
+ public static function formatDate( $timestamp, $dateOnly=false) {
+ return(\OC_Util::formatDate( $timestamp, $dateOnly ));
}
/**