Fix notice
This commit is contained in:
parent
31754a653b
commit
630483c75d
1 changed files with 2 additions and 1 deletions
|
@ -21,7 +21,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
$app = $_POST["app"];
|
||||
$app = isset($_POST["app"]) ? $_POST["app"] : "";
|
||||
|
||||
$app = OC_App::cleanAppId($app);
|
||||
|
||||
$l = OC_L10N::get( $app );
|
||||
|
|
Loading…
Reference in a new issue