Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
azadisaryev committed Nov 13, 2011
1 parent f48c80d commit cdbc906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eventHandlers/gcal.cfc
Expand Up @@ -26,7 +26,7 @@
str = str & '&showTitle=0';
}
else {
if ( len(trim($component('GCalName'))) ) { str = str & '&title=' & urlencodedformat(trim($.component('GCalName'))); }
if ( len(trim($.component('GCalName'))) ) { str = str & '&title=' & urlencodedformat(trim($.component('GCalName'))); }
}
if ( not val($.component('GCalDate')) ) { str = str & '&showDate=0'; }
if ( not val($.component('GCalTabs')) ) { str = str & '&showTabs=0'; }
Expand Down

0 comments on commit cdbc906

Please sign in to comment.