jenkins-bot has submitted this change and it was merged.

Change subject: Split admin/member lists onto separate wikitext source lines
......................................................................


Split admin/member lists onto separate wikitext source lines

Bug: T128001
Change-Id: Ie026cf3aa2d57468a58ab8eba618d7c695c2dfdf
---
M nova/OpenStackNovaProject.php
M nova/OpenStackNovaProjectLdap.php
2 files changed, 4 insertions(+), 4 deletions(-)

Approvals:
  Andrew Bogott: Looks good to me, but someone else must approve
  Tim Landscheidt: Looks good to me, but someone else must approve
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/nova/OpenStackNovaProject.php b/nova/OpenStackNovaProject.php
index dc826aa..ef10c38 100644
--- a/nova/OpenStackNovaProject.php
+++ b/nova/OpenStackNovaProject.php
@@ -876,8 +876,8 @@
                }
                $text = sprintf( $format,
                        $this->getProjectName(),
-                       implode( ',', $admins ),
-                       implode( ',', $members )
+                       implode( ",\n", $admins ),
+                       implode( ",\n", $members )
                );
                OpenStackNovaArticle::editArticle( $this->getProjectName(), 
$text, $wgOpenStackManagerProjectNamespace );
                if ( $wgOpenStackManagerCreateProjectSALPages ) {
diff --git a/nova/OpenStackNovaProjectLdap.php 
b/nova/OpenStackNovaProjectLdap.php
index c343c04..8424751 100644
--- a/nova/OpenStackNovaProjectLdap.php
+++ b/nova/OpenStackNovaProjectLdap.php
@@ -797,8 +797,8 @@
                }
                $text = sprintf( $format,
                        $this->getProjectName(),
-                       implode( ',', $admins ),
-                       implode( ',', $members )
+                       implode( ",\n", $admins ),
+                       implode( ",\n", $members )
                );
                OpenStackNovaArticle::editArticle( $this->getProjectName(), 
$text, $wgOpenStackManagerProjectNamespace );
                if ( $wgOpenStackManagerCreateProjectSALPages ) {

-- 
To view, visit https://gerrit.wikimedia.org/r/274378
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ie026cf3aa2d57468a58ab8eba618d7c695c2dfdf
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/OpenStackManager
Gerrit-Branch: master
Gerrit-Owner: Alex Monk <[email protected]>
Gerrit-Reviewer: Andrew Bogott <[email protected]>
Gerrit-Reviewer: BryanDavis <[email protected]>
Gerrit-Reviewer: Legoktm <[email protected]>
Gerrit-Reviewer: Merlijn van Deen <[email protected]>
Gerrit-Reviewer: Reedy <[email protected]>
Gerrit-Reviewer: Tim Landscheidt <[email protected]>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to