Issues (1210)

Security Analysis    not enabled

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  Cross-Site Scripting
Cross-Site Scripting enables an attacker to inject code into the response of a web-request that is viewed by other users. It can for example be used to bypass access controls, or even to take over other users' accounts.
  File Exposure
File Exposure allows an attacker to gain access to local files that he should not be able to access. These files can for example include database credentials, or other configuration files.
  File Manipulation
File Manipulation enables an attacker to write custom data to files. This potentially leads to injection of arbitrary code on the server.
  Object Injection
Object Injection enables an attacker to inject an object into PHP code, and can lead to arbitrary code execution, file exposure, or file manipulation attacks.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  File Inclusion
File Inclusion enables an attacker to inject custom files into PHP's file loading mechanism, either explicitly passed to include, or for example via PHP's auto-loading mechanism.
  Command Injection
Command Injection enables an attacker to inject a shell command that is execute with the privileges of the web-server. This can be used to expose sensitive data, or gain access of your server.
  SQL Injection
SQL Injection enables an attacker to execute arbitrary SQL code on your database server gaining access to user data, or manipulating user data.
  XPath Injection
XPath Injection enables an attacker to modify the parts of XML document that are read. If that XML document is for example used for authentication, this can lead to further vulnerabilities similar to SQL Injection.
  LDAP Injection
LDAP Injection enables an attacker to inject LDAP statements potentially granting permission to run unauthorized queries, or modify content inside the LDAP tree.
  Header Injection
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  XML Injection
XML Injection enables an attacker to read files on your local filesystem including configuration files, or can be abused to freeze your web-server process.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
Unfortunately, the security analysis is currently not available for your project. If you are a non-commercial open-source project, please contact support to gain access.

language/french/apcal_constants.php (1 issue)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
if( defined( 'FOR_XOOPS_LANG_CHECKER' ) || ! defined( 'APCAL_CNST_LOADED' ) ) {
4
5
define( 'APCAL_CNST_LOADED' , 1 ) ;
6
7
// the language file for jscalendar "DHTML Date/Time Selector"
8
define('_APCAL_JS_CALENDAR','calendar-en.js');
9
10
// format for jscalendar. see common/jscalendar/doc/html/reference.html
11
define('_APCAL_JSFMT_YMDN','%d %B %Y (%A)');
12
13
// format for date()  see http://jp.php.net/date
14
define('_APCAL_DTFMT_MINUTE','i');
15
16
// definition of orders     Y:year  M:month  W:week  D:day  N:dayname  O:operand
17
define('_APCAL_FMT_MD','%2$s %1$s') ;
18
define('_APCAL_FMT_YMD','%1$s %2$s %3$s') ;
19
define('_APCAL_FMT_YMDN','%4$s %3$s %2$s %1$s');
20
define('_APCAL_FMT_YMDO','%4$s%3$s%2$s%1$s');
21
define('_APCAL_FMT_YMW','%1$s %2$s %3$s') ;
22
define('_APCAL_FMT_YW','Semaine %2$s %1$s');
23
define('_APCAL_FMT_DHI','%1$s %2$s:%3$s');
24
define('_APCAL_FMT_HI','%1$s:%2$s');
25
26
// formats for sprintf()
27
define('_APCAL_FMT_YEAR_MONTH','%2$s %1$s') ;
28
define('_APCAL_FMT_YEAR','<font size="-1">ANNEE </font>%s') ;
29
define('_APCAL_FMT_WEEKNO','SEMAINE %s');
30
31
define('_APCAL_ICON_LIST','Vue Liste');
32
define('_APCAL_ICON_DAILY','Vue Journali&egrave;re') ;
33
define('_APCAL_ICON_WEEKLY','Vue Hebdomadaire') ;
34
define('_APCAL_ICON_MONTHLY','Vue Mensuelle') ;
35
define('_APCAL_ICON_YEARLY','Vue Annuelle') ;
36
37
define('_APCAL_MB_SHOWALLCAT','Toutes les cat&eacute;gories');
38
39
define("_APCAL_MB_LINKTODAY","Aujourd'hui") ;
40
define('_APCAL_MB_NOSUBJECT','(Pas de Sujet)') ;
41
define('_APCAL_MB_PREV_DATE','Hier') ;
42
define('_APCAL_MB_NEXT_DATE','Demain') ;
43
define('_APCAL_MB_PREV_WEEK','Semaine pr&eacute;c&eacute;dente') ;
44
define('_APCAL_MB_NEXT_WEEK','Semaine suivante') ;
45
define('_APCAL_MB_PREV_MONTH','Mois pr&eacute;c&eacute;dent') ;
46
define('_APCAL_MB_NEXT_MONTH','Mois suivant') ;
47
define('_APCAL_MB_PREV_YEAR','Ann&eacute;e pr&eacute;c&eacute;dente') ;
48
define('_APCAL_MB_NEXT_YEAR','Ann&eacute;e suivante') ;
49
50
51
define("_APCAL_MB_NOEVENT","Pas d'&eacute;v&egrave;nements") ;
52
define('_APCAL_MB_ADDEVENT','Ajouter un &eacute;v&egrave;nement') ;
53
define('_APCAL_MB_CONTINUING','(continuer)') ;
54
define('_APCAL_MB_RESTEVENT_PRE','plus') ;
55
define('_APCAL_MB_RESTEVENT_SUF','&eacute;v&eacute;nement(s)') ;
56
define('_APCAL_MB_TIMESEPARATOR','--') ;
57
58
define('_APCAL_MB_ALLDAY_EVENT','Journ&eacute;e Enti&egrave;re') ;
59
define('_APCAL_MB_LONG_EVENT','Afficher via une barre') ;
60
define('_APCAL_MB_LONG_SPECIALDAY','Afficher comme un Jour Sp&eacute;cial (Anniv. par exemple)') ;
61
62
define('_APCAL_MB_PUBLIC','Public') ;
63
define('_APCAL_MB_PRIVATE','Priv&eacute;') ;
64
define('_APCAL_MB_PRIVATETARGET',' parmi %s') ;
65
66
define("_APCAL_MB_LINK_TO_RRULE1ST","Sauter jusqu'au premier &eacute;v&egrave;nement ") ;
67
define("_APCAL_MB_RRULE1ST","C'est le premier &eacute;v&egrave;nement") ;
68
69
define('_APCAL_MB_EVENT_NOTREGISTER','Non enregistr&eacute;') ;
70
define('_APCAL_MB_EVENT_ADMITTED','Approuv&eacute;') ;
71
define("_APCAL_MB_EVENT_NEEDADMIT","En attente d'approbation") ;
72
73
define('_APCAL_MB_TITLE_EVENTINFO',"Informations sur l'&eacute;v&egrave;nement") ;
74
define('_APCAL_MB_SUBTITLE_EVENTDETAIL',"D&eacute;tails de l'&eacute;v&egrave;nement") ;
75
define('_APCAL_MB_SUBTITLE_EVENTEDIT',"Editer l'&eacute;v&egrave;nement") ;
76
77
define('_APCAL_MB_HOUR_SUF',':') ;
78
define('_APCAL_MB_MINUTE_SUF','') ;
79
80
define('_APCAL_MB_ORDER_ASC','Croissant');
81
define('_APCAL_MB_ORDER_DESC','D&eacute;croissant');
82
define('_APCAL_MB_SORTBY','Tri&eacute; par:');
83
define('_APCAL_MB_CURSORTEDBY','Ev&egrave;nements actuellement tri&eacute;s par:');
84
85
define('_APCAL_MB_LABEL_CHECKEDITEMS','Les &eacute;v&eacute;nements coch&eacute;s sont:');
86
define('_APCAL_MB_LABEL_OUTPUTICS','Exporter dans iCalendar');
87
88
define('_APCAL_MB_ICALSELECTPLATFORM','S&eacute;lectionner la plateforme');
89
90
define('_APCAL_TH_SUMMARY','Intitul&eacute;') ;
91
define('_APCAL_TH_TIMEZONE','Fuseau Horaire NE PAS MODIFIER SVP') ;
92
define('_APCAL_TH_STARTDATETIME','Date de d&eacute;but') ;
93
define('_APCAL_TH_ENDDATETIME','Date de fin') ;
94
define('_APCAL_TH_ALLDAYOPTIONS','Option Journ&eacute;e Enti&egrave;re') ;
95
define('_APCAL_TH_LOCATION','Lieu') ;
96
97
define('_APCAL_TH_CONTACT','Contact') ;
98
define('_APCAL_TH_CATEGORIES','Cat&eacute;gories');
99
define('_APCAL_TH_SUBMITTER','Auteur');
100
define('_APCAL_TH_CLASS','Type') ;
101
define('_APCAL_TH_DESCRIPTION','Description') ;
102
define('_APCAL_TH_RRULE','P&eacute;riodicit&eacute;') ;
103
define('_APCAL_TH_ADMISSIONSTATUS','Statut') ;
104
define('_APCAL_TH_LASTMODIFIED','Derni&egrave;re modification');
105
106
define("_APCAL_NTC_MONTHLYBYMONTHDAY","(Num&eacute;ro d'entr&eacute;e)") ;
107
define('_APCAL_NTC_EXTRACTLIMIT','** Seulement %s &eacute;v&egrave;nements au maximum sont g&eacute;n&eacute;r&eacute;s.') ;
108
define("_APCAL_NTC_NUMBEROFNEEDADMIT","(%s &eacute;l&eacute;ments n&eacute;cessitent une approbation)") ;
109
110
define('_APCAL_OPT_PRIVATEMYSELF','seulement moi') ;
111
define('_APCAL_OPT_PRIVATEGROUP','groupe %s') ;
112
define('_APCAL_OPT_PRIVATEINVALID','(groupe invalide)') ;
113
114
define('_APCAL_MB_OP_AFTER','Apr&egrave;s');
115
define('_APCAL_MB_OP_BEFORE','Avant');
116
define('_APCAL_MB_OP_ON','Sur');
117
define('_APCAL_MB_OP_ALL','Tout');
118
119
define("_APCAL_CNFM_SAVEAS_YN","Etes-vous d'accord pour sauvegarder ceci comme nouvel enregistrement ?") ;
120
define("_APCAL_CNFM_DELETE_YN","Etes-vous d'accord pour supprimer cet enregistrement ?") ;
121
122
define('_APCAL_ERR_INVALID_EVENT_ID','Erreur: EventID non trouv&eacute;') ;
123
define('_APCAL_ERR_NOPERM_TO_SHOW',"Erreur: Vous n'avez pas la permission de voir") ;
124
define('_APCAL_ERR_NOPERM_TO_OUTPUTICS',"Erreur: Vous n'avez pas la permission d'extraire iCalendar") ;
125
define("_APCAL_ERR_LACKINDISPITEM","L'&eacute;l&eacute;ment %s est vide.<br />Retournez en cliquant sur le bouton Pr&eacute;c&eacute;dent de notre navigateur web") ;
126
127
define('_APCAL_BTN_JUMP','Saut') ;
128
define('_APCAL_BTN_NEWINSERTED','Nouvelle insertion') ;
129
define('_APCAL_BTN_SUBMITCHANGES',' Modifier! ') ;
130
define('_APCAL_BTN_SAVEAS','Sauvegarder sous') ;
131
define('_APCAL_BTN_DELETE','Effacer') ;
132
define('_APCAL_BTN_DELETE_ONE','Supprimer seulement un seul enregistrement');
133
define('_APCAL_BTN_EDITEVENT','Editer') ;
134
define('_APCAL_BTN_RESET','R&eacute;initialiser') ;
135
define('_APCAL_BTN_OUTPUTICS_WIN','iCalendar(Win)') ;
136
define('_APCAL_BTN_OUTPUTICS_MAC','iCalendar(Mac)') ;
137
define('_APCAL_BTN_PRINT','Imprimer');
138
define('_APCAL_BTN_IMPORT','Importer!');
139
define('_APCAL_BTN_UPLOAD','Uploader!');
140
define('_APCAL_BTN_EXPORT','Exporter!');
141
define('_APCAL_BTN_EXTRACT','Extraire');
142
define('_APCAL_BTN_ADMIT','Accepter');
143
define('_APCAL_BTN_MOVE','D&eacute;placer');
144
define('_APCAL_BTN_COPY','Copier');
145
146
define('_APCAL_RR_EVERYDAY','Chaque jour') ;
147
define('_APCAL_RR_EVERYWEEK','Chaque semaine') ;
148
define('_APCAL_RR_EVERYMONTH','Chaque mois') ;
149
define('_APCAL_RR_EVERYYEAR','Chaque ann&eacute;e') ;
150
define('_APCAL_RR_FREQDAILY','Journalier') ;
151
define('_APCAL_RR_FREQWEEKLY','Hebdomadaire') ;
152
define('_APCAL_RR_FREQMONTHLY','Mensuel') ;
153
define('_APCAL_RR_FREQYEARLY','Annuel') ;
154
define('_APCAL_RR_FREQDAILY_PRE','Pendant ') ;
155
define('_APCAL_RR_FREQWEEKLY_PRE','Pendant ') ;
156
define('_APCAL_RR_FREQMONTHLY_PRE','Pendant ') ;
157
define('_APCAL_RR_FREQYEARLY_PRE','Pendant ') ;
158
define('_APCAL_RR_FREQDAILY_SUF','jour(s)') ;
159
define('_APCAL_RR_FREQWEEKLY_SUF','semaine(s)') ;
160
define('_APCAL_RR_FREQMONTHLY_SUF','mois') ;
161
define('_APCAL_RR_FREQYEARLY_SUF','ann&eacute;e(s)') ;
162
define('_APCAL_RR_PERDAY','tous les %s jours') ;
163
define('_APCAL_RR_PERWEEK','toutes les %s semaines') ;
164
define('_APCAL_RR_PERMONTH','tous les %s mois') ;
165
define('_APCAL_RR_PERYEAR','tous les %s ans') ;
166
define('_APCAL_RR_COUNT','<br />%s fois') ;
167
define("_APCAL_RR_UNTIL","<br />jusqu'&agrave; %s") ;
168
define('_APCAL_RR_R_NORRULE','R&eacute;currence Non') ;
169
define('_APCAL_RR_R_YESRRULE','R&eacute;currence Oui') ;
170
define('_APCAL_RR_OR','ou') ;
171
define('_APCAL_RR_S_NOTSELECTED','- non s&eacute;lectionn&eacute; -') ;
172
define('_APCAL_RR_S_SAMEASBDATE','Identique &agrave; la date de d&eacute;but') ;
173
define('_APCAL_RR_R_NOCOUNTUNTIL','Pas de conditions de fin') ;
174
define('_APCAL_RR_R_USECOUNT_PRE','r&eacute;p&eacute;ter') ;
175
define('_APCAL_RR_R_USECOUNT_SUF','fois') ;
176
define("_APCAL_RR_R_USEUNTIL","jusqu'&agrave;") ;
177
178
// Added by goffy for online registration handling
179
define('_APCAL_RO_CANCEL','Action annul&eacute;e');
180
define('_APCAL_RO_RADIO_YES','Oui');
181
define('_APCAL_RO_RADIO_NO','Non');
182
183
define('_APCAL_RO_ONLINE_POSS','Pour ces &eacute;v&eacute;nements, l&#39;inscription en ligne est possible. ');
184
define('_APCAL_RO_ONLINE_POSS_2','Pour cet &eacute;v&eacute;nement, l&#39;inscription en ligne est possible. ');
185
define('_APCAL_RO_ONLY_MEMBERS','L&#39;inscription en ligne n&#39;est possible que pour les utilisateurs enregistr&eacute;s. ');
186
define('_APCAL_RO_ONLINE_NO','L&#39;inscription en ligne n&#39;est pas activ&eacute;e pour cet &eacute;v&eacute;nement');
187
define('_APCAL_RO_ONLINE_YES','L&#39;inscription en ligne est activ&eacute;e pour cet &eacute;v&eacute;nement');
188
define('_APCAL_RO_ONLINE_ACTIVATE','Activer l&#39;inscription en ligne pour cet &eacute;v&eacute;nement');
189
define('_APCAL_RO_ONLINE_DEACTIVATE','Ne pas utiliser l&#39;inscription en ligne pour cet &eacute;v&eacute;nement');
190
define('_APCAL_RO_ONLINE','Inscriptions');
191
define('_APCAL_RO_BTN_ADD','S&#39;inscrire');
192
define('_APCAL_RO_BTN_ADDMORE','Modifier ou ajouter une inscription');
193
define('_APCAL_RO_BTN_REMOVE','Se d&eacute;sinscrire');
194
define('_APCAL_RO_ENABLE_ONLINE','Inscription en ligne');
195
define('_APCAL_RO_NOMEMBERS','Il n&#39;y a pas d&#39;inscription pour cet &eacute;v&eacute;nement');
196
define('_APCAL_RO_BTN_LISTMEMBERS','Liste des participants');
197
define('_APCAL_RO_SUCCESS_ADD','Vous vous &ecirc;tes inscrit &agrave; cet &eacute;v&eacute;nement avec succ&egrave;s');
198
define('_APCAL_RO_SUCCESS_REMOVE','Vous vous &ecirc;tes d&eacute;sinscrit de cet &eacute;v&eacute;nement avec succ&egrave;s');
199
define('_APCAL_RO_UNAME','Personnes inscrites');
200
define('_APCAL_RO_FIRSTNAME','Pr&eacute;nom');
201
define('_APCAL_RO_LASTNAME','Nom');
202
define('_APCAL_RO_EMAIL','Courriel');
203
define('_APCAL_RO_EXTRAINFO1',''); //use it as you want; if you keep it blank, it will be invisible; if you change later, it has no effect on the data himself
204
define('_APCAL_RO_EXTRAINFO2',''); //use it as you want, if you keep it blank, it will be invisible
205
define('_APCAL_RO_EXTRAINFO3',''); //use it as you want, if you keep it blank, it will be invisible
206
define('_APCAL_RO_EXTRAINFO4',''); //use it as you want, if you keep it blank, it will be invisible
207
define('_APCAL_RO_EXTRAINFO5',''); //use it as you want, if you keep it blank, it will be invisible
208
209
define('_APCAL_RO_BTN_CONF_ADD','Confirmer l&#39;inscription');
210
define('_APCAL_RO_BTN_CONF_ADD_MORE','Confirmer votre inscription et invitez plus de gens');
211
define('_APCAL_RO_BTN_CONF_REMOVE','Confirmer la d&eacute;sinscription');
212
define('_APCAL_RO_BTN_CANCEL','Annuler');
213
define('_APCAL_RO_EVENT','&eacute;v&eacute;nement');
214
define('_APCAL_RO_TITLE1','S&#39;inscrire &agrave; un &eacute;v&eacute;nement');
215
define('_APCAL_RO_OBLIGATORY','Ces champs sont obligatoires');
216
217
define('_APCAL_RO_ERROR_REMOVE','Une erreur est survenue lors de votre d&eacute;sinscription');
218
define('_APCAL_RO_ERROR_ADD','Une erreur est survenue lors de votre inscription');
219
define('_APCAL_RO_BTN_BACK','Retour en arri&egrave;re');
220
define('_APCAL_RO_BACK','Vous serez redirig&eacute; vers la page pr&eacute;c&eacute;dente');
221
define('_APCAL_RO_ONLINE2','Inscriptions en ligne');
222
define('_APCAL_RO_ACTION','Action');
223
224
define('_APCAL_RO_TITLE2','Activer l&#39;inscription en ligne pour cet &eacute;v&eacute;nement');
225
define('_APCAL_RO_BTN_RO_EDIT','Modifier l&#39;inscription en ligne');
226
define('_APCAL_RO_BTN_RO_DEACTIVATE','Supprimer l&#39;inscription en ligne');
227
define('_APCAL_RO_BTN_RO_ACTIVATE','Activer');
228
define('_APCAL_RO_QUANTITY','Nombre maximal de participants<br/>(0 = sans limite)');
229
define('_APCAL_RO_QUANTITY2','Nombre maximal de participants');
230
define('_APCAL_RO_DATELIMIT','Date limite pour l&#39;inscription en ligne');
231
define('_APCAL_RO_EMAIL_NOTIFY','Adresse courriel pour les notifications (Laissez vide si vous ne voulez pas recevoir de notifications)');
232
define('_APCAL_RO_BTN_CONF_ACTIVATE','Confirmer');
233
define('_APCAL_RO_ERROR_RO_ACTIVATE','Une erreur est survenue lors de l&#39;activation de l&#39;inscription en ligne');
234
define('_APCAL_RO_SUCCESS_RO_ACTIVATE','Inscription en ligne activ&eacute; avec succ&egrave;s');
235
define('_APCAL_RO_ERROR_RO_DEACTIVATE','Une erreur est survenue lors de la d&eacute;sactivation de l&#39;inscription en ligne');
236
define('_APCAL_RO_SUCCESS_RO_DEACTIVATE','Inscription en ligne d&eacute;sactiv&eacute; avec succ&egrave;s');
237
define('_APCAL_RO_ERROR_FULL','Il n&#39;y a plus de places disponible pour cet &eacute;v&eacute;nement');
238
define('_APCAL_RO_ERROR_TIMEOUT','La date limite d&#39;inscription est d&eacute;pass&eacute;');
239
define('_APCAL_RO_ERROR_OBLIGATORY','Veuillez remplir les champs obligatoire \"%f\"');
240
define('_APCAL_RO_BTN_CONF_SAVE','Sauvegarder');
241
define('_APCAL_RO_BTN_CONF_EDIT','Sauvegarder les changements');
242
243
define('_APCAL_RO_MAIL_SUBJ_ADD','Info registration');
244
define('_APCAL_RO_MAIL_SUBJ_REMOVE','Info de-registration');
245
define('_APCAL_RO_MAIL_SUBJ_TEXT','Information sur l&#39;&eacute;v&eacute;nement');
246
define('_APCAL_RO_DATE','Date');
247
define('_APCAL_RO_LOCATION','Emplacement');
248
define('_APCAL_RO_LINK','Lien vers l&#39;&eacute;v&eacute;nement');
249
define('_APCAL_RO_TITLE3','Liste des inscriptions existantes');
250
define('_APCAL_RO_TITLE4','Envoyer un courriel &agrave; tous les participants');
251
define('_APCAL_RO_MAIL_SENDER','Exp&eacute;diteur');
252
define('_APCAL_RO_MAIL_SUBJ','Objet');
253
define('_APCAL_RO_MAIL_BODY1','Texte du courriel');
254
define('_APCAL_RO_MAIL_BODY2','Les expressions entre accolades seront remplac&eacute;es (ex: {NAME} sera remplac&eacute; par le pr&eacute;nom et le nom)');
255
define('_APCAL_RO_BTN_SEND','Envoyer');
256
define('_APCAL_RO_MAILSENT',' message(s) envoy&eacute;(s)');
257
258
define('_APCAL_RO_TITLE5','Modifier les inscriptions');
259
define('_APCAL_RO_BTN_EDIT','Modifier');
260
define('_APCAL_RO_SUCCESS_EDIT','Modification des informations d&#39;inscriptions r&eacute;uissies');
261
define('_APCAL_RO_ERROR_EDIT','Une erreur est survenue lors de la modification de l&#39;inscription');
262
define('_APCAL_RO_SEND_CONF1','Confirmation par courriel');
263
define('_APCAL_RO_SEND_CONF2','Envoy&eacute; &agrave;');
264
define('_APCAL_RO_SEND_CONF3','Envoyer une confirmation par courriel: ');
265
266
define('_APCAL_RO_REDIRECT','Vous serez redirig&eacute; vers l&#39;activation des inscriptions en ligne');
267
define('_APCAL_RO_SUCCESS_NEW_EVENT','&Eacute;v&eacute;nement cr&eacute;&eacute; avec succ&egrave;s');
268
define('_APCAL_RO_SUCCESS_DELETE_EVENT','&Eacute;v&eacute;nement supprim&eacute; avec succ&egrave;s');
269
define('_APCAL_RO_SUCCESS_UPDATE_EVENT','&Eacute;v&eacute;nement modifi&eacute; avec succ&egrave;s');
270
define('_APCAL_RO_SUCCESS_COPY_EVENT','&Eacute;v&eacute;nement copi&eacute; avec succ&egrave;s');
271
272
}
273
274
?>
0 ignored issues
show
It is not recommended to use PHP's closing tag ?> in files other than templates.

Using a closing tag in PHP files that only contain PHP code is not recommended as you might accidentally add whitespace after the closing tag which would then be output by PHP. This can cause severe problems, for example headers cannot be sent anymore.

A simple precaution is to leave off the closing tag as it is not required, and it also has no negative effects whatsoever.

Loading history...