summaryrefslogtreecommitdiff
path: root/php.ini-production
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2016-08-11 05:11:17 +0200
committerKalle Sommer Nielsen <kalle@php.net>2016-08-11 05:11:17 +0200
commit9fc0a5e049ade8082b2b9a45687ac8cbd694f731 (patch)
tree867a91233ea693b5b7cc5631d4c9f09bc5499cfa /php.ini-production
parent197051f3ab50a0e4ee6d15cd09099f21852d1c14 (diff)
downloadphp-git-9fc0a5e049ade8082b2b9a45687ac8cbd694f731.tar.gz
msql > mysqli, use a better extension name as an example in php.ini, as we do not have msql support anymore (Sorry Rasmus!)
Diffstat (limited to 'php.ini-production')
-rw-r--r--php.ini-production6
1 files changed, 3 insertions, 3 deletions
diff --git a/php.ini-production b/php.ini-production
index 224b72959d..1991ac0cc9 100644
--- a/php.ini-production
+++ b/php.ini-production
@@ -858,15 +858,15 @@ default_socket_timeout = 60
;
; For example, on Windows:
;
-; extension=msql.dll
+; extension=mysqli.dll
;
; ... or under UNIX:
;
-; extension=msql.so
+; extension=mysqli.so
;
; ... or with a path:
;
-; extension=/path/to/extension/msql.so
+; extension=/path/to/extension/mysqli.so
;
; If you only provide the name of the extension, PHP will look for it in its
; default extension directory.