Skip to content

Commit

Permalink
* Removed code remnants from #28
Browse files Browse the repository at this point in the history
* Removed useless #GetContinent function

git-svn-id: http://svn.asp-stats.com/asg/trunk@138 01510c37-c734-0410-a4eb-a63f18df9afa
  • Loading branch information
weppos committed Apr 25, 2008
1 parent 2b8594b commit f1f7a1f
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 464 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Expand Up @@ -14,6 +14,7 @@
* CHANGED: Renamed stats_js.asp and count.asp to asg-track.js.asp and asg-track.asp (Closes #40).
* CHANGED: Massive code refactoring and improvements.
* REMOVED: Support for custom skins. The layout is going to be changed and, for now, it's better to drop it the buggy version (Closes #38).
* REMOVED: Unused #GetContinent function from functions_common.asp and all related strings.

== 2.1.x ==

Expand Down
5 changes: 0 additions & 5 deletions myasg/config_common.asp
Expand Up @@ -131,7 +131,6 @@ Dim blnMonitLanguages 'Monitoraggio Lingue Browser
Dim blnMonitPages 'Monitoraggio Pagine Visitate
Dim blnMonitEngine 'Monitoraggio Motori di Ricerca
Dim blnMonitCountry 'Monitoraggio Nazioni di Provenienza
Dim blnAsgCheckIcon 'Notifica icone non riconosciute
Dim blnAsgCheckUpdate 'Data ultimo controllo aggiornamento
Dim blnApplicationConfig 'Utilizza o meno variabili di applicazione per settaggio
Dim blnConnectionIsOpen 'Imposta a true se ha dovuto procedere all'apertura della connessione
Expand Down Expand Up @@ -270,8 +269,6 @@ If isEmpty(Application("blnConfig")) OR isNull(Application("blnConfig")) OR Appl
blnMonitPages = CBool(objAsgRs("Opt_Monit_Pages"))
blnMonitEngine = CBool(objAsgRs("Opt_Monit_Engine"))
blnMonitCountry = CBool(objAsgRs("Opt_Monit_Country"))
blnAsgCheckIcon = CBool(objAsgRs("Opt_Check_Icon"))
blnAsgCheckUpdate = CLng(objAsgRs("Opt_Check_Update"))
'Se si utilizzano le variabili (ma sono vuote) allora creale
If blnApplicationConfig Then
Expand Down Expand Up @@ -303,7 +300,6 @@ If isEmpty(Application("blnConfig")) OR isNull(Application("blnConfig")) OR Appl
Application("blnMonitPages") = CBool(blnMonitPages)
Application("blnMonitEngine") = CBool(blnMonitEngine)
Application("blnMonitCountry") = CBool(blnMonitCountry)
Application("blnAsgCheckIcon") = CBool(blnAsgCheckIcon)
Application("blnAsgCheckUpdate") = CLng(blnAsgCheckUpdate)
'Imposta la variabile di config a vera
Expand Down Expand Up @@ -344,7 +340,6 @@ ElseIf blnApplicationConfig Then
blnMonitPages = CBool(Application("blnMonitPages"))
blnMonitEngine = CBool(Application("blnMonitEngine"))
blnMonitCountry = CBool(Application("blnMonitCountry"))
blnAsgCheckIcon = CBool(Application("blnAsgCheckIcon"))
blnAsgCheckUpdate = CLng(Application("blnAsgCheckUpdate"))
'Fine condizioni variabili Application
Expand Down

0 comments on commit f1f7a1f

Please sign in to comment.