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

Commit

Permalink
Merge pull request #90 from jmohler1970/FW/1
Browse files Browse the repository at this point in the history
Now should run on Windows
  • Loading branch information
jmohler1970 committed Oct 23, 2015
2 parents 6af625f + 1739c3d commit 0edf367
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
19 changes: 19 additions & 0 deletions humans.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/* Development */

Programmer:James Mohler
Contact: james [dot] mohler [at] me [dot] come
From:Orange County, California, USA


/* 3rd Party Technologies */

jQuery
jQueryUI
Bootstrap
Bootswatch
Mindmup Bootstrap Wysiwyg
Bootfaces
Datatables.net
Font Awesome
Select2

4 changes: 3 additions & 1 deletion model/services/language.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ struct function readProperties(required string propertyfile) {

local.stResult = {};

local.stSection = getProfileSections(arguments.propertyfile);
local.stSection = getProfileSections(arguments.propertyfile.replace("\", "/", "all"));


for(local.section in local.stSection) {
Expand Down Expand Up @@ -41,6 +41,8 @@ struct function readPHP(required string phpPath) {

for (local.phpFile in local.arDirectory) {

local.phpFile = local.phpFile.replace("\", "/", "all");

local.languageKey = local.phpFile.listLast("/").listFirst(".");

local.stProperties[languageKey] = {};
Expand Down

0 comments on commit 0edf367

Please sign in to comment.