diff options
| author | Erik Frèrejean <erikfrerejean@phpbb.com> | 2011-08-10 17:17:13 +0200 |
|---|---|---|
| committer | Erik Frèrejean <erikfrerejean@phpbb.com> | 2011-08-15 14:05:34 +0200 |
| commit | bf2b4a81d331c086e362a8cbcf3358324325c012 (patch) | |
| tree | c5e9903b5e226df3d6e4f3e361923b82a7986769 | |
| parent | 4754e11d67da22f2c4674a5f8d8c39af6a8e7ca1 (diff) | |
| download | forums-bf2b4a81d331c086e362a8cbcf3358324325c012.tar forums-bf2b4a81d331c086e362a8cbcf3358324325c012.tar.gz forums-bf2b4a81d331c086e362a8cbcf3358324325c012.tar.bz2 forums-bf2b4a81d331c086e362a8cbcf3358324325c012.tar.xz forums-bf2b4a81d331c086e362a8cbcf3358324325c012.zip | |
[ticket/10316] Resolve inconsistent move topic behavior
When moving a topic you can straight away lock it, when using proSilver
this checkbox is unchecked by default. subSilver2 however has this
checked.
Change subSilver2 to not check the box by default and behave as
proSilver does.
PHPBB3-10316
| -rw-r--r-- | phpBB/styles/subsilver2/template/mcp_move.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/subsilver2/template/mcp_move.html b/phpBB/styles/subsilver2/template/mcp_move.html index c1027cdbf3..ccfe5ecd4d 100644 --- a/phpBB/styles/subsilver2/template/mcp_move.html +++ b/phpBB/styles/subsilver2/template/mcp_move.html @@ -20,7 +20,7 @@ <input type="checkbox" class="radio" name="move_leave_shadow" checked="checked" /><span class="gen">{L_LEAVE_SHADOW}</span><br /> <!-- ENDIF --> <!-- IF S_CAN_LOCK_TOPIC --> - <input type="checkbox" class="radio" name="move_lock_topics" checked="checked" /><span class="gen">{L_LOCK_TOPIC}</span><br /> + <input type="checkbox" class="radio" name="move_lock_topics" /><span class="gen">{L_LOCK_TOPIC}</span><br /> <!-- ENDIF --> <br />{S_HIDDEN_FIELDS}<span class="gen">{MESSAGE_TEXT}</span><br /><br /> <input type="submit" name="confirm" value="{YES_VALUE}" class="btnmain" /> <input type="submit" name="cancel" value="{L_NO}" class="btnlite" /> |
