Skip to content

Commit 9c6a28f

Browse files
committed
Fixes var names
1 parent 468f25a commit 9c6a28f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

templates/php.ini.j2

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ max_input_time = 60
474474

475475
; Maximum amount of memory a script may consume (128MB)
476476
; http://php.net/memory-limit
477-
memory_limit = {{ php5_memory_limit }}
477+
memory_limit = {{ php7_memory_limit }}
478478

479479
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
480480
; Error handling and logging ;
@@ -749,7 +749,7 @@ auto_globals_jit = On
749749

750750
; Maximum size of POST data that PHP will accept.
751751
; http://php.net/post-max-size
752-
post_max_size = {{ php5_post_max_size }}
752+
post_max_size = {{ php7_post_max_size }}
753753

754754
; Magic quotes are a preprocessing feature of PHP where PHP will attempt to
755755
; escape any character sequences in GET, POST, COOKIE and ENV data which might
@@ -863,7 +863,7 @@ enable_dl = Off
863863
; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
864864
; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
865865
; http://php.net/cgi.fix-pathinfo
866-
cgi.fix_pathinfo={{ php5_fix_pathinfo }}
866+
cgi.fix_pathinfo={{ php7_fix_pathinfo }}
867867

868868
; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
869869
; security tokens of the calling client. This allows IIS to define the
@@ -900,7 +900,7 @@ file_uploads = On
900900

901901
; Maximum allowed size for uploaded files.
902902
; http://php.net/upload-max-filesize
903-
upload_max_filesize = {{ php5_upload_max_filesize }}
903+
upload_max_filesize = {{ php7_upload_max_filesize }}
904904

905905
; Maximum number of files that can be uploaded via a single request
906906
max_file_uploads = 20

0 commit comments

Comments
 (0)