| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
HHVM seems to have problems with this at the moment (even setting those values in the php.ini of HHVM doesn't have helped much) and thus the unit test execution failed.
So it's better if we disable this check for now for HHVM.
|
|\
| |
| | |
Add check for `HTTP_RAW_POST_DATA` setting for >= 5.6
|
| | |
|
| |
| |
| |
| |
| |
| | |
PHP 5.6 otherwise throws notices for perfectly valid code which results in broken endpoints.
Fixes https://github.com/owncloud/core/issues/13592
|
|\ \
| |/
|/| |
Return false if the login is canceled in a hook
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
|/
|
|
| |
for encryption key introduced with OC8
|
|
|
|
|
|
|
|
| |
Apparently `normalizer_normalize` is not verifying itself whether the string needs to be converted or not. Or does it at least not very performantly.
This simple change leads to a 4% performance gain on the processing of normalizeUnicode. Since this method is called quite often (i.e. for every file path) this has actually a measurable impact. For examples searches are now 200ms faster on my machine. Still not perfect but way to go.
Part of https://github.com/owncloud/core/issues/13221
|
|
|
|
| |
blocking the request to itself - fixes #13153
|
|\
| |
| | |
Check for hash
|
| |
| |
| |
| | |
See https://github.com/owncloud/core/pull/13042
|
| | |
|
|/ |
|
| |
|
|
|
|
| |
Make DateTimeFormatter a service and adjust tests that have been inaccurate
|
|
|
|
|
|
|
|
|
|
| |
Both are removed from 5.4.0
Safe Mode: http://php.net/manual/en/features.safe-mode.php
> This feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0.
Magic Quotes: http://php.net/manual/en/security.magicquotes.php
> This feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0.
|
|
|
|
| |
:beers:
|
| |
|
|
|
|
| |
This is not installed by default in all cases and will break the DAV features of ownCloud. Lot's of reports such as https://github.com/owncloud/ios-issues/issues/167#issuecomment-63798507
|
|
|
|
|
|
| |
* add addVendorScript & addVendorStyle
* refactoring of addScript and addStyle
* add shortcuts vendorScript and vendorStyle
|
|\
| |
| | |
Fix the addHeader tag attributes text methods to not ignore the text parameter
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
$text parameter
Also support closing tags with no text content given
Conflicts:
lib/private/template.php
|
| |
| |
| |
| | |
remove translation.php
|
|/
|
|
|
|
|
|
|
|
|
| |
Added addTranslations and fixed de.js file
Fixed de.js to use OC.L10N.register() and use to correct expected
format.
Added JS unit tests for OC.L10N class
Include translations JS script for all apps
|
|\
| |
| | |
Make supported DBs configurable within config.php
|
| |
| |
| |
| |
| |
| | |
This commit will make the supported DBs for installation configurable within config.php. By default the following databases are tested: "sqlite", "mysql", "pgsql". The reason behind this is that there might be instances where we want to prevent SQLite to be used by mistake.
To test this play around with the new configuration parameter "supportedDatabases".
|
|/
|
|
| |
It's only reasonable to have proper type hinting here which might even help us to catch bugs.
|
|
|
|
| |
There is not much sense in having these files marked executable, we should avoid that.
|
| |
|
|
|
|
| |
suspend encryption proxy when copying skeleton
|
| |
|
|\
| |
| | |
Redirect only to absolute URL
|
| |
| |
| |
| | |
We do not want to redirect to other domains using the "?redirect_url=" feature. Please notice, that the ownCloud project does not consider open redirectors as security issue.
|
|/ |
|
|\
| |
| | |
Don't complain about non-writable datadirs before we're installed
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Moved WebDAV check to client side JS
|
| |/
| |
| |
| |
| |
| |
| | |
- Added setup checks in JavaScript
- Moved isWebDAVWorking to JS using SetupChecks
- Moved internet connection checks to an ajax call that goes through the
server
|
|\ \
| | |
| | | |
send browsers timezone back tp the server on login
|
| |/
| |
| |
| | |
time zone
|
|\ \
| | |
| | | |
Use only lower-case letters
|
| |/
| |
| |
| | |
Fixes https://github.com/owncloud/core/issues/11239
|
|/
|
|
|
|
|
|
| |
We do not want to follow redirects to other protocols since they might allow an adversary to bypass network restrictions. (i.e. a redirect to ftp:// might be used to access files of a FTP server which might be in a secure zone and not be reachable from the net but from the ownCloud server)
Get final redirect manually using get_headers()
Migrate to HTTPHelper class and add unit tests
|