From 5abd03638b742ef5872ddf9ebd2bc8e71493bc50 Mon Sep 17 00:00:00 2001
From: Jakukyo Friel
Date: Mon, 16 Dec 2013 13:37:08 +0800
Subject: [PATCH] =?UTF-8?q?=E6=96=87=E5=AD=97=E7=9A=84=E5=B0=8F=E8=B0=83?=
=?UTF-8?q?=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- 密码建议使用符号、字母混合改为使用符号、字母、数字混合
- 授权说明改得更明确些,强调是在GPL的范围之内自由商业性或非商业性使用。
---
install.php | 2 +-
var/Widget/Users/Edit.php | 2 +-
var/Widget/Users/Profile.php | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/install.php b/install.php
index 128da8b2..4019dca5 100644
--- a/install.php
+++ b/install.php
@@ -595,7 +595,7 @@ Typecho_Db::set(\$db);
GPL 协议发布,我们允许用户在 GPL 协议许可的范围内使用,拷贝,修改和分发此程序.
-您可以自由地将其用于商业以及非商业用途.'); ?>
+在GPL许可的范围内,您可以自由地将其用于商业以及非商业用途.'); ?>
diff --git a/var/Widget/Users/Edit.php b/var/Widget/Users/Edit.php
index a40c81b0..a406fce7 100644
--- a/var/Widget/Users/Edit.php
+++ b/var/Widget/Users/Edit.php
@@ -110,7 +110,7 @@ class Widget_Users_Edit extends Widget_Abstract_Users implements Widget_Interfac
/** 用户密码 */
$password = new Typecho_Widget_Helper_Form_Element_Password('password', NULL, NULL, _t('用户密码'), _t('为此用户分配一个密码.')
- . '
' . _t('建议使用特殊字符与字母的混编样式,以增加系统安全性.'));
+ . '
' . _t('建议使用特殊字符与字母、数字的混编样式,以增加系统安全性.'));
$password->input->setAttribute('class', 'w-60');
$form->addInput($password);
diff --git a/var/Widget/Users/Profile.php b/var/Widget/Users/Profile.php
index 06a57300..cef6c36c 100644
--- a/var/Widget/Users/Profile.php
+++ b/var/Widget/Users/Profile.php
@@ -211,7 +211,7 @@ class Widget_Users_Profile extends Widget_Users_Edit implements Widget_Interface
/** 用户密码 */
$password = new Typecho_Widget_Helper_Form_Element_Password('password', NULL, NULL, _t('用户密码'), _t('为此用户分配一个密码.')
- . '
' . _t('建议使用特殊字符与字母的混编样式,以增加系统安全性.'));
+ . '
' . _t('建议使用特殊字符与字母、数字的混编样式,以增加系统安全性.'));
$password->input->setAttribute('class', 'w-60');
$form->addInput($password);