- Jan 01, 2014
-
-
lolozere authored
Add support mimetype for extension .sh, .bash and .sh-lib
-
Niklas Sombert authored
This reverts commit 2d75914f, reversing changes made to 760fa9ea.
-
- Dec 21, 2013
-
-
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.
-
- 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
-
- 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.
-
- Dec 18, 2013
-
-
Vincent Petry authored
This is mostly to fix acceptance tests that have a .cc file. Also fixed typo in python mime type.
-
Robin Appelman authored
-
Thomas Müller authored
-
Robin Appelman authored
-
- Dec 17, 2013
-
-
Oliver Gasser authored
Add support for specifying the precision and scale of a decimal data type to the XML description language. See owncloud/core#6475
-
Andreas Fischer authored
This is possible because it is possible to only use xcache as an opcode cache but not a variable cache.
-
- Dec 16, 2013
-
-
Thomas Tanghus authored
-
Vincent Petry authored
In some specific situations, the L10N bundle isn't loadable yet (for example when there is an issue with the app_config table). In such case, we still want to be able to log the real exception. This fixes errors that say "OC_L10N_String::__toString must not throw exceptions"
-
Robin Appelman authored
-
Robin Appelman authored
-
- Dec 13, 2013
-
-
Arthur Schiwon authored
-
- Dec 12, 2013
-
-
Robin Appelman authored
-
Robin Appelman authored
-
Vincent Petry authored
- L10N now converted to string to make them work with json_encode - Added specific error message when server doesn't allow fopen on URLs - Fixed client side to correctly show error message in a notification - Added OCP\JSON::encode() method to encode JSON with support for the OC_L10N_String values
-
- Dec 11, 2013
-
-
Robin Appelman authored
-
Robin Appelman authored
-
Robin Appelman authored
-
Robin Appelman authored
-
- Dec 10, 2013
-
-
Andreas Fischer authored
-
- Dec 09, 2013
-
-
Joas Schilling authored
-
Robin Appelman authored
-
- Dec 07, 2013
-
-
Morris Jobke authored
-
- Dec 06, 2013
-
-
Bart Visscher authored
The file on disk is encrypted, and not readable on client systems
-
Bart Visscher authored
-
- Dec 05, 2013
-
-
Robin Appelman authored
-
- Dec 04, 2013
-
-
Alexander Bergolth authored
-
Frank Karlitschek authored
-
- Dec 03, 2013
-
-
Vincent Petry authored
This is to make sure that method isn't broken
-
- Dec 02, 2013
-
-
Robin Appelman authored
-
Robin Appelman authored
-
Robin Appelman authored
-
Thomas Müller authored
-
- Nov 29, 2013
-
-
Vincent Petry authored
Fixed touch after chunk assembling which was using the wrong path, resulting in the creation of an extra file. Fixes #6007
-
Frank Karlitschek authored
make 5.3.8 the minimum supported version. This fixes several issues with broken PHP versions like: https://github.com/owncloud/core/issues/5734 Also make the version compare clearer. It was pure luck that floatval on a php version returned the correct value.
-
- Nov 28, 2013
-
-
Björn Schießle authored
-