- Jan 02, 2014
-
-
Robin Appelman authored
-
Jenkins for ownCloud authored
-
- Jan 01, 2014
-
-
Thomas Müller authored
don't specify path to 3rdparty directory when registering Pimple autoloader
-
Thomas Müller authored
Add support mimetype
-
Adam Williamson authored
The core 3rdparty directory is in the include_path from lib/base.php anyway, so this is unnecessary, and causes problems for downstream distributors who unbundle Pimple.
-
lolozere authored
Add support mimetype for extension .sh, .bash and .sh-lib
-
Niklas Sombert authored
This reverts commit 2d75914f, reversing changes made to 760fa9ea.
-
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
-