Changeset 1384873
- Timestamp:
- 04/02/2016 07:32:56 AM (10 years ago)
- Location:
- more-privacy-options/trunk
- Files:
-
- 2 edited
-
ds_wp3_private_blog.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
more-privacy-options/trunk/ds_wp3_private_blog.php
r1384833 r1384873 3 3 Plugin Name: More Privacy Options 4 4 Plugin URI: http://wordpress.org/extend/plugins/more-privacy-options/ 5 Version: 4. 1.15 Version: 4.3 6 6 Description: Add more privacy(visibility) options to a WordPress Multisite Network. Settings->Reading->Visibility:Network Users, Blog Members, or Admins Only. Network Settings->Network Visibility Selector: All Blogs Visible to Network Users Only or Visibility managed per blog as default. 7 7 Author: D. Sader … … 179 179 180 180 $to_new = $this->ds_mail_super_admin_messages($blog_public_new); 181 $blog_details = get_blog_details($blog_id); 182 $blogname = $blog_details->blogname; 181 $blogname = get_blog_option( $blog_id, 'blogname'); 183 182 $email = stripslashes( get_site_option('admin_email') ); 184 $subject = __('Site ', $this->l10n_prefix).$blogname.'('.$blog_id.'), '.get_site_url( $blog_id ).', '. __('changed reading visibility setting to ', $this->l10n_prefix) . $to_new; 185 $message = __('Site ', $this->l10n_prefix).$blogname.'('.$blog_id.'), '.get_site_url( $blog_id ).', '.__('changed reading visibility setting to ', $this->l10n_prefix) .$to_new; 183 $subject = __('Site ', $this->l10n_prefix).'"'.$blogname.'" (ID: '.$blog_id.'), '.get_site_url( $blog_id ).', '. __('changed reading visibility setting to ', $this->l10n_prefix) .'"'. $to_new.'"'; 184 $message .= __('Site ', $this->l10n_prefix).'"'.$blogname.'" (ID: '.$blog_id.'), '.get_site_url( $blog_id ).', '.__('changed reading visibility setting to ', $this->l10n_prefix) .'"'. $to_new.'."'; 185 $message .= __(" \r\n\r\nSent by More Privacy Options plugin.", $this->l10n_prefix); 186 186 187 $headers = 'Auto-Submitted: auto-generated'; 187 188 wp_mail($email, $subject, $message, $headers); -
more-privacy-options/trunk/readme.txt
r1384626 r1384873 38 38 Login message has link to sign-up page of a "Network Users Only" blog or a link the blog admin email if user is logged in but not a member of a "Members Only" blog. 39 39 40 WP svn via Aptana 3.41 42 40 Localization ready. 43 41 … … 65 63 == Changelog == 66 64 67 = 4. 1.1=68 * WP 4. 3 OK, network settings savebugfix.65 = 4.3 = 66 * WP 4.5 tests OK, outgoing email bugfix. 69 67 70 68 71 69 == Upgrade Notice == 72 = 4. 1.1=73 * WP 4. 3 OK, network settings savebugfix.70 = 4.3 = 71 * WP 4.5 tests OK, outgoing email bugfix.
Note: See TracChangeset
for help on using the changeset viewer.