Skip to content
This repository has been archived by the owner on Feb 27, 2018. It is now read-only.

Commit

Permalink
undo changes
Browse files Browse the repository at this point in the history
  • Loading branch information
labby committed Aug 9, 2014
1 parent 40cf6f9 commit bea77fd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
6 changes: 2 additions & 4 deletions upload/modules/addon_file_editor/info.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
$module_directory = 'addon_file_editor';
$module_name = 'Addon File Editor (AFE)';
$module_function = 'tool';
$module_version = '2.0.0';
$module_version = '1.2.2';
$module_guid = '8B3A91F7-E26D-4992-B4B8-FEC580F379F5';
$module_status = 'stable';
$module_platform = '2.x';
$module_platform = '1.x';
$module_author = 'Christian Sommer (doc)';
$module_license = '<a href="http://www.gnu.org/licenses/gpl.html">GNU General Public Licencse 3.0</a>';
$module_license_terms = '-';
Expand All @@ -37,8 +37,6 @@
* MODULE VERSION HISTORY
* ------------------------------------------------------------------------------------------------
*
* 2.0.0 prepare for LEPTON 2.0.0
*
* 1.2.2 replace mysql_real_escape_string with addslashes
*
* v.1.2.1 minor improvements in action_handler
Expand Down
7 changes: 4 additions & 3 deletions upload/modules/addon_file_editor/precheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@

/**
* Check if minimum requirements for this module are fullfilled
* Only checked in Website Baker 2.8 or higher
*/
$PRECHECK = array(
// make sure LEPTON version is 2.0 or higher
'VERSION' => array('VERSION' => '2.0', 'OPERATOR' => '>='),
// make sure Website Baker version is 2.7 or higher
'WB_VERSION' => array('VERSION' => '2.7', 'OPERATOR' => '>='),

// make sure PHP version is 4.3.11 or higher
'PHP_VERSION' => array('VERSION' => '5.3.0', 'OPERATOR' => '>=')
'PHP_VERSION' => array('VERSION' => '4.3.11', 'OPERATOR' => '>=')
);
?>

0 comments on commit bea77fd

Please sign in to comment.