Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Vanilla Extensions not Found
This discussion has been closed.
Comments
Enjoy vanilla though!
Well remembered.
.
.
// Loop through each file
while (false !== ($Item = readdir($FolderHandle))) {
$RecordItem = true;
if ($Item == "." || $Item == ".." || is_dir(agEXTENSIONS.$Item)) {
// do nothing
} else {
// Retrieve extension properties
$Lines = @file(agEXTENSIONS.$Item);
if (!$Lines) {
.
.
.
got it..