Skip to content
This repository has been archived by the owner on Dec 14, 2023. It is now read-only.

Commit

Permalink
No longer considers .asp/.aspx in restrictedFiles, considers .rb instead
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpass committed May 9, 2012
1 parent 491fb4c commit a6e244a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function generateHash($plainText,$salt=null) {
// Start of settings
// -----------------

$versionNo = "v 0.6.62";
$versionNo = "v 0.6.63";
$codeMirrorDir = "CodeMirror-2.24";
$cMThisVer = 2.24;
$tabsIndent = true;
Expand All @@ -26,7 +26,7 @@ function generateHash($plainText,$salt=null) {
$visibleTabs = false;
$lockedNav = true;
$accountPassword = "";
$restrictedFiles = array("wp-",".php",".asp",".aspx",".sql");
$restrictedFiles = array("wp-",".php",".rb",".sql");
$bannedFiles = array("_coder","wp-",".exe");
$allowedIPs = array("*");
$plugins = array(
Expand Down

0 comments on commit a6e244a

Please sign in to comment.