Merge pull request #11759 from nextcloud/feature/11504/sharing-favicon
Use default favicon on sharing pages
This commit is contained in:
commit
b5753d0efa
|
@ -308,7 +308,7 @@ class ThemingDefaults extends \OC_Defaults {
|
||||||
* @return bool|string false if image should not replaced, otherwise the location of the image
|
* @return bool|string false if image should not replaced, otherwise the location of the image
|
||||||
*/
|
*/
|
||||||
public function replaceImagePath($app, $image) {
|
public function replaceImagePath($app, $image) {
|
||||||
if($app==='') {
|
if ($app === '' || $app === 'files_sharing') {
|
||||||
$app = 'core';
|
$app = 'core';
|
||||||
}
|
}
|
||||||
$cacheBusterValue = $this->config->getAppValue('theming', 'cachebuster', '0');
|
$cacheBusterValue = $this->config->getAppValue('theming', 'cachebuster', '0');
|
||||||
|
|
Loading…
Reference in New Issue