Merge pull request #2022 from owncloud/fix-notice

Fix notice
This commit is contained in:
Thomas Müller 2013-03-01 23:39:27 -08:00
commit 2af3bc3e77
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 );