From c8da5372c4eb4010d2bc3df498164beca97bd2b9 Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Mon, 5 May 2014 02:29:09 +0400 Subject: [PATCH] Fixes #3211 --- docs/guide/security-authentication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/security-authentication.md b/docs/guide/security-authentication.md index 91217a59dc..64d03f8687 100644 --- a/docs/guide/security-authentication.md +++ b/docs/guide/security-authentication.md @@ -8,7 +8,7 @@ Authentication is the act of verifying who a user is, and is the basis of the lo In Yii, this entire process is performed semi-automatically, leaving the developer to merely implement [[yii\web\IdentityInterface]], the most important class in the authentication system. Typically, implementation of `IdentityInterface` is accomplished using the `User` model. You can find a fully featured example of authentication in the -[advanced application template](installation.md). Below, only the interface methods are listed: +[advanced application template](tutorial-advanced-app.md). Below, only the interface methods are listed: ```php class User extends ActiveRecord implements IdentityInterface