From 54ac1ea02e935a87b58094d24c3899d44549e508 Mon Sep 17 00:00:00 2001 From: Dhiraj Kanchan <14177457+dhirajkanchan@users.noreply.github.com> Date: Thu, 29 Nov 2018 04:32:38 +1100 Subject: [PATCH] Fix if statement to use equal to operator instead of assignment operator. (#24523) Fix if statement to use Double equals (==) instead of Single equal (=) which would overwrite the value of $_GET['name'] variable. --- guide/russian/php/conditionals/index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/guide/russian/php/conditionals/index.md b/guide/russian/php/conditionals/index.md index f30995a2f2..16b7572c44 100644 --- a/guide/russian/php/conditionals/index.md +++ b/guide/russian/php/conditionals/index.md @@ -10,7 +10,7 @@ localeTitle: Conditionals ```PHP