| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Add visibility to interface to make scrutinizer 1 step happier
|
| | |
|
|/ |
|
|\
| |
| | |
Remove unused function and correct PHPDoc
|
| | |
|
|\ \
| | |
| | | |
Implement php code checker to detect usage of not allowed private ...
|
| | | |
|
| | |
| | |
| | |
| | | |
including console command to check local code to be used by developers
|
|\ \ \
| | | |
| | | | |
Add an array implementation of cache and use it if we are not debugging
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
URLEncode logout attribute
|
| | | | |
| | | | |
| | | | |
| | | | | |
Otherwise logout can fail if the requesttoken contains a +
|
|\ \ \ \ \
| |_|_|_|/
|/| | | | |
Add `rel="noreferrer"` where possible and switch to HTTPS
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Dont lower the mtime of a folder when propagating changes
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Properly show the warning about the missing composer autoloader
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Don't flip image in PHP 5.4
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
* imageflip() isn't available in PHP < 5.5
* fixes #14130
|
| | | | | | | | |
|
| |_|/ / / / /
|/| | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
owncloud/ensure-that-passed-file-path-is-always-a-string
Ensure that passed argument is always a string
|
| | |_|_|/ / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Some code paths called the `normalizePath` functionality with types other than a string which resulted in unexpected behaviour.
Thus the function is now manually casting the type to a string and I corrected the usage in list.php as well.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
App install behind a Proxy
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
catch any whitespaces which might get written to the output buffer while...
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
loading a theme
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
PHPStorm complained about those functions being declared as Internal. I doubt that this is actually the case since they are even in the public API.
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
add timeout to curl request
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Reuse known fileids and cache data in the scanner
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| |_|_|_|/ / / / /
|/| | | | | | | | |
Deprecate `OC_JSON` and `OCP\JSON`
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This deprecates – but not removes – those two classes and all functions in it. There is no reason that new developments should use those methods as with the AppFramework there is a replacement that allows testable code.
With the `@deprecated` annotation IDEs like PHPStorm will point out to the developer that a functionality is deprecated and that there is a better suited replacement.
|
|/ / / / / / / / |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
in some case charset can be in lower case.
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Add strtoupper() in UTF-8 check to avoid error message
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | |
| | | | | | | |
| | | | | | | | |
owncloud/group-share-collition-wrong-type-in-post-hook
Do not overwrite the shareType so the post hook is still correct
|
| | |_|_|_|/ /
| |/| | | | | |
|
| |_|/ / / /
|/| | | | | |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
Revert "enabled disabled files app in repair step"
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This reverts commit d70160c6077ca017d6cb7d61f066fe33e3b1e081.
|
|\ \ \ \ \ \
| |_|_|_|_|/
|/| | | | | |
add function to invalidate one opcache file, use it if possible #9885
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
It changed since we wrote this patch.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Both pointed out in submission review by @bantu, thanks.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Issue #9885 appears to be triggered by ownCloud invalidating the entire
PHP opcache. Testing indicates it can be avoided by only invalidating the
single file that was written from the opcache, instead of clearing the
whole thing. In general it is more efficient to invalidate only the single
file that was changed, rather than the whole cache.
This adds a deleteFromOpcodeCache() function which invalidates a single
file from the opcache if possible, returning true if the underlying
function returns true (which may mean 'success', or 'file does not exist',
or 'file exists but is not in opcache', all of which are OK to treat as
good for our purposes). It also changes writeData() in config.php to try
using deleteFromOpcodeCache() and only fall back on clearOpcodeCache() if
that fails.
|