- Jan 13, 2014
-
-
Robin Appelman authored
Add a FileInfo class which holds all info of a file and return that from getFileInfo, getDirectoryContent and search
-
- Jan 09, 2014
-
-
Thomas Müller authored
-
Thomas Müller authored
-
Thomas Müller authored
-
- Jan 08, 2014
-
-
Arthur Schiwon authored
-
Vincent Petry authored
This fixes the issue introduced by the transfer id which itself wasn't taken into account by the shortcut code for part file in the shared storage class.
-
Thomas Müller authored
-
Arthur Schiwon authored
-
Arthur Schiwon authored
-
Vincent Petry authored
Storage mount points are not deletable, so make sure that the unlink operation and its hooks aren't run in such cases. Note that some storages might recursively delete their contents when calling unlink on their root. This fix prevents that as well.
-
Thomas Müller authored
-
- Jan 07, 2014
-
-
Arthur Schiwon authored
-
Vincent Petry authored
Fixes #6526
-
Thomas Müller authored
-
Thomas Müller authored
-
Jörn Friedrich Dreyer authored
-
Thomas Müller authored
-
Thomas Müller authored
-
Thomas Müller authored
in order to work properly with encryption ocTransferId is added to the file path - questionable usage of magic string
-
Jenkins for ownCloud authored
-
- Jan 06, 2014
-
-
Jenkins for ownCloud authored
-
- Jan 05, 2014
-
-
Thomas Müller authored
-
Jenkins for ownCloud authored
-
- Jan 02, 2014
-
-
Robin Appelman authored
-
Jenkins for ownCloud authored
- Jan 01, 2014
-
-
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.
-
- Dec 31, 2013
-
-
Thomas Müller authored
-
Thomas Müller authored
new config parameter 'front_controller_active' which will instruct the url generator to generate urls without index.php
-
Jenkins for ownCloud authored
-
- Dec 30, 2013
-
-
Jenkins for ownCloud authored
-
- Dec 27, 2013
-
-
Jenkins for ownCloud authored
-
- Dec 26, 2013
-
-
Jenkins for ownCloud authored
-
- Dec 24, 2013
-
-
Jenkins for ownCloud authored
-
- Dec 22, 2013
-
-
Jenkins for ownCloud authored
-
- 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
-
Thomas Müller authored
-