Overview
Comment:Ne pas compter le nombre d'arguments de la trace, car ce n'est pas un tableau
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | stable
Files: files | file ages | folders
SHA1: 6ba10ca59de1f684502f704ca7227d08b68ad2de
User & Date: bohwaz on 2019-01-23 11:01:28
Other Links: manifest | tags
Context
2019-01-24
10:45
Ne pas faire apparaître les écritures de report dans le rapprochement check-in: 95fd97dcb2 user: bohwaz tags: trunk, stable
2019-01-23
11:01
Ne pas compter le nombre d'arguments de la trace, car ce n'est pas un tableau check-in: 6ba10ca59d user: bohwaz tags: trunk, stable
2019-01-22
14:42
Correctif : utilisation du numéro de membre et non l'id de membre ! check-in: 2080c291b5 user: bohwaz tags: trunk, stable
Changes

Modified src/templates/admin/config/logs.tpl from [bdfa29c9cf] to [c62511fc2c].

14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
		{foreach from=$main.errors item="error"}
			<h2 class="ruler">{$error.type}: {$error.message} [Code: {$error.errorCode}]</h2>
			{if !empty($error.backtrace)}
				{foreach from=$error.backtrace item=trace}
				<article class="trace">
					{if $trace.function}
						<h4>
							{$trace.function}{if !empty($trace.args)} ({$trace.args|count} arg.){/if}
						{if !empty($trace.args)}
							<table>
							{foreach from=$trace.args key=name item=arg}
								<tr>
									<th>{$name}</th>
									<td>{$arg}</td>
								</tr>







|







14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
		{foreach from=$main.errors item="error"}
			<h2 class="ruler">{$error.type}: {$error.message} [Code: {$error.errorCode}]</h2>
			{if !empty($error.backtrace)}
				{foreach from=$error.backtrace item=trace}
				<article class="trace">
					{if $trace.function}
						<h4>
							{$trace.function}
						{if !empty($trace.args)}
							<table>
							{foreach from=$trace.args key=name item=arg}
								<tr>
									<th>{$name}</th>
									<td>{$arg}</td>
								</tr>