Completed
Pull Request — master (#15)
by
unknown
02:18
created
src/themes/WordpressStandard/Configuration/AdminLogin.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     function loginLogo() {
32 32
         $css = '<style type="text/css">';
33 33
         $css .= '#login h1 a, .login h1 a {';
34
-        $css .= 'background-image: url(' . get_stylesheet_directory_uri() .'/Resources/assets/images/site-login-logo.png);';
34
+        $css .= 'background-image: url(' . get_stylesheet_directory_uri() . '/Resources/assets/images/site-login-logo.png);';
35 35
         $css .= 'background-size: 179px;';
36 36
         $css .= 'width: 179px;';
37 37
         $css .= '}';
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,8 @@  discard block
 block discarded – undo
28 28
         add_filter('login_headertitle', [$this, 'loginTitle']);
29 29
     }
30 30
 
31
-    function loginLogo() {
31
+    function loginLogo()
32
+    {
32 33
         $css = '<style type="text/css">';
33 34
         $css .= '#login h1 a, .login h1 a {';
34 35
         $css .= 'background-image: url(' . get_stylesheet_directory_uri() .'/Resources/assets/images/site-login-logo.png);';
@@ -40,11 +41,13 @@  discard block
 block discarded – undo
40 41
         echo $css;
41 42
     }
42 43
 
43
-    function loginUrl() {
44
+    function loginUrl()
45
+    {
44 46
         return home_url();
45 47
     }
46 48
 
47
-    function loginTitle() {
49
+    function loginTitle()
50
+    {
48 51
         return get_bloginfo();
49 52
     }
50 53
 }
Please login to merge, or discard this patch.