diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-05-02 13:28:56 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-05-02 13:28:56 +0200 |
commit | 8e99475886fa3fc23dd576cce7eaefd532c3fe5c (patch) | |
tree | 206c1923ac04eea8702805c1e02088b729ff1b9b /apps/bookmarks/ajax/editBookmark.php | |
parent | 8c7f8546716ac77cdeaa134caf9fae22232ce213 (diff) | |
download | nextcloud-server-8e99475886fa3fc23dd576cce7eaefd532c3fe5c.tar.gz nextcloud-server-8e99475886fa3fc23dd576cce7eaefd532c3fe5c.zip |
first part of the config stuff
Diffstat (limited to 'apps/bookmarks/ajax/editBookmark.php')
-rwxr-xr-x[-rw-r--r--] | apps/bookmarks/ajax/editBookmark.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/bookmarks/ajax/editBookmark.php b/apps/bookmarks/ajax/editBookmark.php index a834cd216e6..5bed9d08448 100644..100755 --- a/apps/bookmarks/ajax/editBookmark.php +++ b/apps/bookmarks/ajax/editBookmark.php @@ -30,7 +30,7 @@ $RUNTIME_NOSETUPFS=true; OC_JSON::checkLoggedIn(); OC_JSON::checkAppEnabled('bookmarks'); -$CONFIG_DBTYPE = OC_Config::getValue( "dbtype", "sqlite" ); +$CONFIG_DBTYPE = OCP\Config::getSystemValue( "dbtype", "sqlite" ); if( $CONFIG_DBTYPE == 'sqlite' or $CONFIG_DBTYPE == 'sqlite3' ){ $_ut = "strftime('%s','now')"; } elseif($CONFIG_DBTYPE == 'pgsql') { |