Fix notice

This commit is contained in:
Lukas Reschke 2013-03-02 00:53:53 +01:00
parent 31754a653b
commit 630483c75d
1 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,8 @@
*
*/
$app = $_POST["app"];
$app = isset($_POST["app"]) ? $_POST["app"] : "";
$app = OC_App::cleanAppId($app);
$l = OC_L10N::get( $app );