diff options
author | Raghu Nayyar <me@iraghu.com> | 2014-03-14 16:27:43 +0530 |
---|---|---|
committer | Raghu Nayyar <me@iraghu.com> | 2014-03-14 16:27:43 +0530 |
commit | 0f0baa530391f4ba1ae4dfe60947c2f1cd77d2d6 (patch) | |
tree | 4fbf001dc909ad38f9df54f4a907046771e2f483 | |
parent | 53f5747ac1cefb7b9f8de137f9b9d0d8919c81fa (diff) | |
parent | 74eb9bea22bb65294a29c0438536f03643d22749 (diff) | |
download | nextcloud-server-0f0baa530391f4ba1ae4dfe60947c2f1cd77d2d6.tar.gz nextcloud-server-0f0baa530391f4ba1ae4dfe60947c2f1cd77d2d6.zip |
Merge pull request #7725 from owncloud/body-public
add 'body-public' ID to body in base layout so it can be identified via CSS
-rw-r--r-- | core/templates/layout.base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index bae52a73234..b3e2f4da91c 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -31,7 +31,7 @@ <?php endforeach; ?> </head> - <body> + <body id="body-public"> <?php print_unescaped($_['content']); ?> </body> </html> |