-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
4 additions
and
12 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,9 @@ | ||
<?php | ||
/** | ||
* FakerPress | ||
* | ||
* @package fakerpress | ||
* @author Gustavo Bordoni <[email protected]> | ||
* @license GPL-2.0+ | ||
* @link http://bordoni.me | ||
* @copyright 2014 Bordoni | ||
* | ||
* Plugin Name: FakerPress | ||
* Plugin URI: https://github.com/iryz/fakerpress | ||
* Description: FakerPress is a clean way to generate fake data to your WordPress instalation, great for developers who need testing | ||
* Version: 0.1.1 | ||
* Version: 0.1.2 | ||
* Author: Iryz | ||
* Author URI: http://iryz.org | ||
* Text Domain: fakerpress | ||
|
@@ -57,9 +49,9 @@ function _fp_l10n() { | |
echo "<style>body{margin: 0 2px;font-family: 'Open Sans',sans-serif;font-size: 13px;line-height: 1.5em;}</style>"; | ||
echo wp_kses_post( __( '<b>FakerPress</b> requires PHP 5.3 or higher, and the plugin has now disabled itself.', 'fakerpress' ) ) . | ||
'<br />' . | ||
__( 'To allow better control over dates, advanced security improvements and performance gain.', 'fakerpress' ) . | ||
esc_attr__( 'To allow better control over dates, advanced security improvements and performance gain.', 'fakerpress' ) . | ||
'<br />' . | ||
__( 'Contact your Hosting or your system administrator and ask for this Upgrade to version 5.3 of PHP.', 'vsh' ); | ||
esc_attr__( 'Contact your Hosting or your system administrator and ask for this Upgrade to version 5.3 of PHP.', 'vsh' ); | ||
exit(); | ||
} | ||
|
||
|