From 292feef8840f7e1e8be0904e52c3a1cd7edcf745 Mon Sep 17 00:00:00 2001
From: Mohammad Jangda <batmoo@gmail.com>
Date: Wed, 20 Feb 2013 05:30:00 -0500
Subject: [PATCH] More standard plugin header style. Remove legacy Automattic
 plugins link.

---
 push-syndication.php | 25 +++++++++++--------------
 1 file changed, 11 insertions(+), 14 deletions(-)

diff --git a/push-syndication.php b/push-syndication.php
index f2f542d..fc67de4 100644
--- a/push-syndication.php
+++ b/push-syndication.php
@@ -1,16 +1,13 @@
-<?php /*
-
-**************************************************************************
-
-Plugin Name:  Push Syndication
-Plugin URI:   http://wordpress.org/extend/plugins/push-syndication/
-Description:  Push content to multiple sites
-Version:      2.0
-Author:       Automattic
-Author URI:   http://automattic.com/wordpress-plugins/
-License:      GPLv2 or later
-
-**************************************************************************/
+<?php
+/**
+ * Plugin Name:  Syndication
+ * Plugin URI:   http://wordpress.org/extend/plugins/push-syndication/
+ * Description:  Syndicate content to and from your sites
+ * Version:      2.0
+ * Author:       Automattic
+ * Author URI:   http://automattic.com
+ * License:      GPLv2 or later
+ */
 
 if ( ! defined( 'PUSH_SYNDICATE_KEY' ) )
 	define( 'PUSH_SYNDICATE_KEY', 'PUSH_SYNDICATE_KEY' );
@@ -23,4 +20,4 @@ if ( !defined( 'PUSH_SYNDICATION_ENVIRONMENT' ) )
     define( 'PUSH_SYNDICATION_ENVIRONMENT', 'WP' );
 
 $push_syndication_server_class = PUSH_SYNDICATION_ENVIRONMENT . '_Push_Syndication_Server';
-$push_syndication_server = new $push_syndication_server_class();
\ No newline at end of file
+$push_syndication_server = new $push_syndication_server_class();
-- 
GitLab