- Jan 01, 2014
-
-
Niklas Sombert authored
Somebody had forgotten "OC_User::setupBackends();"...
-
- Dec 31, 2013
-
-
Jenkins for ownCloud authored
-
- Dec 30, 2013
-
-
Jenkins for ownCloud authored
-
- Dec 29, 2013
-
-
Jenkins for ownCloud authored
-
- Dec 28, 2013
-
-
Jenkins for ownCloud authored
-
- Dec 27, 2013
-
-
Jenkins for ownCloud authored
-
- Dec 26, 2013
-
-
Jenkins for ownCloud authored
-
- Dec 25, 2013
-
-
Jenkins for ownCloud authored
-
- Dec 24, 2013
-
-
Thomas Müller authored
Added test cleanup listener to detect untidy tests
-
Thomas Müller authored
Fixed apps loading order
-
Thomas Müller authored
Made admin password field required on client side
-
Thomas Müller authored
fix preview for reshared file
-
Jenkins for ownCloud authored
-
- Dec 23, 2013
-
-
Frank Karlitschek authored
Remove OC_DB_StatementWrapper::numRows()
-
- Dec 22, 2013
-
-
vsapronov authored
Fix for case described in https://github.com/syncloud/owncloud-setup/issues/19
-
Georg Ehrke authored
-
Jenkins for ownCloud authored
-
- Dec 21, 2013
-
-
Andreas Fischer authored
-
Andreas Fischer authored
Using this method will result in an unneccesary extra SQL query (which also may return an incorrect result because the underlying table changed in the meantime). In general: If you are performing an UPDATE, DELETE or equivalent query, OC_DB_StatementWrapper::execute() will already give you the number of "affected rows" via \Doctrine\DBAL\Driver\Statement::rowCount(). This will not work for SELECT queries, however. If you want to know whether a table contains any rows matching your condition, use "SELECT id FROM ... WHERE ... LIMIT 1". If you want to know whether a table contains any rows matching your condition and you also need the data, use "SELECT ... FROM ... WHERE ...", then use one of the fetch() methods. If you want to count the number of rows matching your condition, use use "SELECT COUNT(...) AS number_of_rows FROM ... WHERE ...", then use one of the fetch() methods.
-
Jenkins for ownCloud authored
-
- Dec 20, 2013
-
-
Vincent Petry authored
On SQLite the app order can be arbitrary and cause strange bugs. On MySQL, the app order seems to be always alphabetical. This fix enforces alphabetical order to make sure that all environments behave the same and to reduce bugs related to app loading order. Fixes #6442
-
Frank Karlitschek authored
correctly mark app management active
-
Jenkins for ownCloud authored
-
- Dec 19, 2013
-
-
Vincent Petry authored
After each test suite, detects whether there are stray datafiles, hooks or proxies, then show a warning and clear them.
-
Björn Schießle authored
[encryption] fix getUser Helper
-
Björn Schießle authored
-
Björn Schießle authored
[encryption] fix rename of shared files
-
Björn Schießle authored
-
Andreas Fischer authored
Symfonys addCollection() with multiple arguments is deprecated * leo-b/fix_router_deprecation: Symfonys addCollection() with multiple arguments is deprecated, fix deprecation warning
-
Björn Schießle authored
-
Vincent Petry authored
Removed numRows usage from encryption app
-
Björn Schießle authored
Added fseek fallback to the encryption app
-
Björn Schießle authored
-
Vincent Petry authored
numRows on Oracle always seem to return 0. This fix removes numRows usage from the encryption and sharing app. This fixes unit tests and potentially the encryption app itself (migration status) when running on Oracle
-
Thomas Müller authored
only walk an array
-
Robin Appelman authored
Fetch all appconfig values for an app at once and cache the results
-
Thomas Müller authored
Don't use xcache in case admin auth is enabled
-
Vincent Petry authored
Finally kill mdb2 master
-
Frank Karlitschek authored
Added missing mime types
-
Jenkins for ownCloud authored
-