Arthur Schiwon
1e1ced7772
Introduce user count action to user management
12 years ago
Jenkins for ownCloud
0e843b9d7d
[tx-robot] updated from transifex
12 years ago
Morris Jobke
ce3df44699
Merge pull request #6031 from s0taka/master
No decimal points for Kilobyte and Byte #5371 .
12 years ago
Thomas Müller
e2d739fa21
Merge pull request #6580 from monreal/master
Silence output of 'which' command used in smbclient detection
12 years ago
Jenkins for ownCloud
e4616199df
[tx-robot] updated from transifex
12 years ago
Jenkins for ownCloud
aaa48576ee
[tx-robot] updated from transifex
12 years ago
icewind1991
f016a3ead3
Merge pull request #6610 from owncloud/apcu-clear
Fix APCIterator syntax in \OC\Memcache\APCu::clear
12 years ago
Thomas Müller
1ce45713bd
Merge pull request #6605 from owncloud/free_space_disabled
Return SPACE_UNKNOWN if disk_free_space is disabled
12 years ago
Thomas Müller
27d7fff580
Merge pull request #6609 from owncloud/avatar-test-user
Make OC_Avatar unit tests independent of currently loggedin user
12 years ago
Robin Appelman
83f968ace2
Fix APCIterator syntax in \OC\Memcache\APCU::clear
see http://www.php.net/manual/en/apciterator.construct.php
12 years ago
Robin Appelman
6f6c3d1e44
Make OC_Avatar unit tests independent of currently loggedin user
12 years ago
icewind1991
14e0b1b6d1
Merge pull request #6513 from owncloud/user-no-change-displayname
Re-add the config options to remove the ability for users to change their displayname
12 years ago
Robin Appelman
25370fcb82
Return SPACE_UNKNOWN if disk_free_space is disabled when getting the free space on a local storage
12 years ago
Jenkins for ownCloud
095f9b8ee0
[tx-robot] updated from transifex
12 years ago
Thomas Müller
25a9311e94
Merge pull request #6601 from AdamWill/pimple-include
don't specify path to 3rdparty directory when registering Pimple autoloader
12 years ago
Thomas Müller
ac3f83ca0d
Merge pull request #6598 from lolozere/master
Add support mimetype
12 years ago
Adam Williamson
9b4a827e0b
don't specify path to 3rdparty directory when registering Pimple autoloader
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.
12 years ago
lolozere
d5382ac05d
Add support mimetype
Add support mimetype for extension .sh, .bash and .sh-lib
12 years ago
Niklas Sombert
4c179850ab
Revert "Added support for extra backends (see pull request #5043 )"
This reverts commit 2d75914f2a , reversing
changes made to 760fa9ea30 .
12 years ago
Niklas Sombert
2d75914f2a
Added support for extra backends (see pull request #5043 )
Somebody had forgotten "OC_User::setupBackends();"...
12 years ago
Jenkins for ownCloud
760fa9ea30
[tx-robot] updated from transifex
12 years ago
Jenkins for ownCloud
9ea9638490
[tx-robot] updated from transifex
12 years ago
Jenkins for ownCloud
e345f3f511
[tx-robot] updated from transifex
12 years ago
Jenkins for ownCloud
71c829f92a
[tx-robot] updated from transifex
12 years ago
Michael Monreal
f52a9e5e42
Silence output of 'which' command used in smbclient detection
12 years ago
Jenkins for ownCloud
64a001edab
[tx-robot] updated from transifex
12 years ago
Jenkins for ownCloud
7b2f4b08ac
[tx-robot] updated from transifex
12 years ago
Jenkins for ownCloud
dbfe313a63
[tx-robot] updated from transifex
12 years ago
Thomas Müller
97031ba45c
Merge pull request #6520 from owncloud/tests-testcleanuplistener
Added test cleanup listener to detect untidy tests
12 years ago
Thomas Müller
efdeba7416
Merge pull request #6449 from owncloud/core-appsorderfix
Fixed apps loading order
12 years ago
Thomas Müller
a87a18d56c
Merge pull request #6561 from syncloud/master
Made admin password field required on client side
12 years ago
Thomas Müller
6523960de9
Merge pull request #6554 from owncloud/fix_5982
fix preview for reshared file
12 years ago
Jenkins for ownCloud
dbbd99db09
[tx-robot] updated from transifex
12 years ago
Frank Karlitschek
7b428f6009
Merge pull request #6460 from owncloud/remove-numRows
Remove OC_DB_StatementWrapper::numRows()
12 years ago
Vladimir Sapronov
cef39243f8
Made password field required on client side
Fix for case described in https://github.com/syncloud/owncloud-setup/issues/19
12 years ago
Georg Ehrke
c90e3e4f5b
fix preview for reshared file
12 years ago
Jenkins for ownCloud
f60ecfc7fd
[tx-robot] updated from transifex
12 years ago
Andreas Fischer
4bc2a22317
Remove all uses of numRows().
12 years ago
Andreas Fischer
63a2bea7ec
Remove OC_DB_StatementWrapper::numRows().
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.
12 years ago
Jenkins for ownCloud
cd26631a6d
[tx-robot] updated from transifex
12 years ago
Vincent Petry
c6377e9125
Fixed apps loading order
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
12 years ago
Robin Appelman
0ed1b64673
Pass config object in testGetHomeNotSupported
12 years ago
Frank Karlitschek
dc45141f4a
Merge pull request #6262 from nickvergessen/issue/4375
correctly mark app management active
12 years ago
Jenkins for ownCloud
371a476eb5
[tx-robot] updated from transifex
12 years ago
Vincent Petry
1c340444a4
Added test cleanup listener to detect untidy tests
After each test suite, detects whether there are stray datafiles, hooks
or proxies, then show a warning and clear them.
12 years ago
Björn Schießle
6a3e38266f
Merge pull request #6507 from owncloud/enc_fix_getUser
[encryption] fix getUser Helper
12 years ago
Bjoern Schiessle
517a55a437
tests added
12 years ago
Björn Schießle
f0da7b20c1
Merge pull request #6517 from owncloud/fix_6510
[encryption] fix rename of shared files
12 years ago
Bjoern Schiessle
552d0a6feb
check if the old owner and the old path is available
12 years ago
Andreas Fischer
526e873073
Merge pull request #6219 from leo-b/fix_router_deprecation
Symfonys addCollection() with multiple arguments is deprecated
* leo-b/fix_router_deprecation:
Symfonys addCollection() with multiple arguments is deprecated, fix deprecation warning
12 years ago