This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PemFTP | |
-------------------------------- | |
File : wp-admin/includes/class-ftp.php:508 | |
Reason : UseUndeclaredVariable | |
Snippet : $arg | |
Line : return $this->_list(($arg?" ".$arg:"").($pathname?" ".$pathname:""), "NLST", "nlist"); | |
-------------------------------- | |
File : wp-admin/includes/class-ftp.php:508 | |
Reason : UseUndeclaredVariable | |
Snippet : $arg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//** Redirect if not logged in | |
add_action( 'template_redirect', function() { | |
if ( ! is_user_logged_in() ) { | |
wp_redirect( wp_login_url() ); | |
exit; | |
} | |
} ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: wp-content/themes/twentytwelve/style.css | |
=================================================================== | |
--- wp-content/themes/twentytwelve/style.css (revision 21639) | |
+++ wp-content/themes/twentytwelve/style.css (working copy) | |
@@ -437,10 +437,13 @@ | |
body { | |
font-size: 14px; | |
font-size: 1rem; | |
- font-family: "Open Sans", Helvetica, Arial, sans-serif; | |
+ font-family: Helvetica, Arial, sans-serif; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: WordCamp Philly 2011 Admin | |
Plugin URI: http://localhost/whitelabel | |
Description: Some swanky stuff to make your admin look GOOD | |
Author: Andrew Norcross | |
Version: 0.1 | |
Requires at least: 3.0 | |
Author URI: http://andrewnorcross.com |