Skip to content

Commit

Permalink
notifications, debug settings off
Browse files Browse the repository at this point in the history
  • Loading branch information
Grant committed Dec 14, 2017
1 parent 29ddc9b commit 6d8ef2d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
2 changes: 0 additions & 2 deletions admin/views/settings/default.cfm
Expand Up @@ -41,12 +41,10 @@ http://www.apache.org/licenses/LICENSE-2.0
<option value="monthly" <cfif rc.gsmsettings.get('frequency') eq "monthly">selected="selected"</cfif>>Monthly</option> <option value="monthly" <cfif rc.gsmsettings.get('frequency') eq "monthly">selected="selected"</cfif>>Monthly</option>
</select> </select>
</div> </div>
<!---
<div class="mura-control-group"> <div class="mura-control-group">
<label for="notifyemail">Notification</label> <label for="notifyemail">Notification</label>
<input name="notifyemail" type="text" value="#rc.gsmsettings.get('notifyemail')#"> <input name="notifyemail" type="text" value="#rc.gsmsettings.get('notifyemail')#">
</div> </div>
--->
<div class="mura-actions"> <div class="mura-actions">
<div class="form-actions"> <div class="form-actions">
<button type="submit" class="btn mura-primary"><i class="mi-check-circle"></i>Save</button> <button type="submit" class="btn mura-primary"><i class="mi-check-circle"></i>Save</button>
Expand Down
4 changes: 2 additions & 2 deletions includes/fw1config.cfm
Expand Up @@ -23,9 +23,9 @@ http://www.apache.org/licenses/LICENSE-2.0
// If true, then each subsystem is treated as its own, individual application, unaware of any other subsystem, and will not respond to requests for any other subsystem. For example, if a link in App2 points to 'buildURL('app3:main.form') as a 'href' tag and is clicked, then App2 will maintain its state and not respond. Only App3 will respond to that request. If false, then it is assumed that you will only have ONE display object on any page at any given time. If you have more than one, then as you interact with it, all of them will respond with the same view. You have been warned! // If true, then each subsystem is treated as its own, individual application, unaware of any other subsystem, and will not respond to requests for any other subsystem. For example, if a link in App2 points to 'buildURL('app3:main.form') as a 'href' tag and is clicked, then App2 will maintain its state and not respond. Only App3 will respond to that request. If false, then it is assumed that you will only have ONE display object on any page at any given time. If you have more than one, then as you interact with it, all of them will respond with the same view. You have been warned!
variables.framework.siloSubsystems = true; variables.framework.siloSubsystems = true;
variables.framework.debugMode = true; // if TRUE, then additional information is returned by the Application.onError() method variables.framework.debugMode = false; // if TRUE, then additional information is returned by the Application.onError() method
variables.framework.reloadApplicationOnEveryRequest = true; // change to TRUE if you're developing the plugin so you can see changes in your controllers, etc. ... otherwise, set to FALSE for production variables.framework.reloadApplicationOnEveryRequest = false; // change to TRUE if you're developing the plugin so you can see changes in your controllers, etc. ... otherwise, set to FALSE for production
variables.framework.trace = false; // if true, will print out debugging/tracing info at the bottom of ea. page (within the Plugin's Administration area only) variables.framework.trace = false; // if true, will print out debugging/tracing info at the bottom of ea. page (within the Plugin's Administration area only)
Expand Down
6 changes: 1 addition & 5 deletions process/controllers/main.cfc
Expand Up @@ -23,9 +23,6 @@ component persistent="false" accessors="true" output="false" extends="controller
var sitemapManager = $.getBean('GoogleSitemapsManager'); var sitemapManager = $.getBean('GoogleSitemapsManager');
var sitemapXML = sitemapManager.getSitemap(rc.$,siteid); var sitemapXML = sitemapManager.getSitemap(rc.$,siteid);





rc.gsmsettings.setValue('datelastgenerate',now()); rc.gsmsettings.setValue('datelastgenerate',now());
<!--- extend object issue, must set this ---> <!--- extend object issue, must set this --->
rc.gsmsettings.save(); rc.gsmsettings.save();
Expand All @@ -51,7 +48,7 @@ component persistent="false" accessors="true" output="false" extends="controller
} }
file action="write" file="#filename#" output="#sitemapXML#"; file action="write" file="#filename#" output="#sitemapXML#";
} }
<!---
<cftry> <cftry>
<cfset mailer.sendHTML(msg, <cfset mailer.sendHTML(msg,
#rc.gsmsettings.getValue('Email')#, #rc.gsmsettings.getValue('Email')#,
Expand All @@ -62,7 +59,6 @@ component persistent="false" accessors="true" output="false" extends="controller
<cfcatch></cfcatch> <cfcatch></cfcatch>
</cftry> </cftry>
</cfif> </cfif>
--->
rc.time = (getTickCount()-tickCount); rc.time = (getTickCount()-tickCount);




Expand Down

0 comments on commit 6d8ef2d

Please sign in to comment.