Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a8e6f5d

Browse filesBrowse files
committed
Removed the column about the temporary name
1 parent f0bb058 commit a8e6f5d
Copy full SHA for a8e6f5d

File tree

2 files changed

+0
-3
lines changed
Filter options

2 files changed

+0
-3
lines changed

‎src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/request.html.twig

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/request.html.twig
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@
144144
<th scope="col">File Name</th>
145145
<th scope="col">MIME Type</th>
146146
<th scope="col text-right">Size (bytes)</th>
147-
<th scope="col">Temporary Location</th>
148147
</tr>
149148
</thead>
150149
<tbody>
@@ -153,7 +152,6 @@
153152
<td>{{ file.name }}</td>
154153
<td>{{ file.mimetype }}</td>
155154
<td class="text-right">{{ file.size|number_format }}</td>
156-
<td>{{ file.pathname }}</td>
157155
</tr>
158156
{% endfor %}
159157
</tbody>

‎src/Symfony/Component/HttpKernel/DataCollector/RequestDataCollector.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/DataCollector/RequestDataCollector.php
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ public function collect(Request $request, Response $response, \Exception $except
6464
'name' => $fileData->getClientOriginalName(),
6565
'mimetype' => $fileData->getMimeType(),
6666
'size' => $fileData->getSize(),
67-
'pathname' => $fileData->getRealPath(),
6867
);
6968
}
7069
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.