Skip to content
This repository was archived by the owner on Apr 17, 2025. It is now read-only.

Commit 523b102

Browse files
committed
fix(fetch): Replaced php short tag with <?php in fetch latest script.
Fast CGI running on Nginx does not support short tags by default, and this is typically not a setting that can be set at runtime. It's simpler to remove the requirement in code rather than force every environment's php config to support short_tags.
1 parent 43aad28 commit 523b102

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fetchLatestSnapshot.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
</head>
55
<body>
66
<pre><?php echo `date`; ?></pre>
7-
<pre><?
7+
<pre><?php
88
$ver = $_GET['ver'];
99
$ciBase = 'http://ci.angularjs.org/job/angular.js-angular-v1.0.x/ws/build/';
1010
$url = $ciBase.'angular-'.$ver.'.zip';

0 commit comments

Comments
 (0)