diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-03-14 11:08:16 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-03-14 11:08:16 +0100 |
commit | 74eb9bea22bb65294a29c0438536f03643d22749 (patch) | |
tree | 4fbf001dc909ad38f9df54f4a907046771e2f483 /core/templates | |
parent | 53f5747ac1cefb7b9f8de137f9b9d0d8919c81fa (diff) | |
download | nextcloud-server-74eb9bea22bb65294a29c0438536f03643d22749.tar.gz nextcloud-server-74eb9bea22bb65294a29c0438536f03643d22749.zip |
add 'body-public' ID to body in base layout so it can be identified via CSS
Diffstat (limited to 'core/templates')
-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> |