Last modified: 2010-05-15 15:37:33 UTC

Wikimedia Bugzilla is closed!

Wikimedia migrated from Bugzilla to Phabricator. Bug reports are handled in Wikimedia Phabricator.
This static website is read-only and for historical purposes. It is not possible to log in and except for displaying bug reports and their history, links might be broken. See T5685, the corresponding Phabricator task for complete and up-to-date bug report information.
Bug 3685 - Should users be able to create a talk page if no article exists?
Should users be able to create a talk page if no article exists?
Status: RESOLVED WONTFIX
Product: MediaWiki
Classification: Unclassified
General/Unknown (Other open bugs)
1.5.x
PC Windows 2000
: Lowest enhancement (vote)
: ---
Assigned To: Nobody - You can work on this!
:
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2005-10-12 07:52 UTC by Nick Jenkins
Modified: 2010-05-15 15:37 UTC (History)
0 users

See Also:
Web browser: ---
Mobile Platform: ---
Assignee Huggle Beta Tester: ---


Attachments

Description Nick Jenkins 2005-10-12 07:52:36 UTC
Q: Could it be useful to enforce that a talk page cannot be created if there is
no corresponding article?

If so, could do it in includes/EditPage.php with something like this:
	if ($this->mTitle->isTalkPage()) {
		$subject_page = $this->mTitle->getSubjectPage();
		if (!$subject_page->exists()) {
			// give some error
			return;
		}
	}
Comment 1 Ævar Arnfjörð Bjarmason 2005-10-12 07:53:33 UTC
This is not a good idea, WONTFIX
Comment 2 Brion Vibber 2005-10-12 07:54:21 UTC
There's no reason to enforce something like that. It could be a great annoyance when 
dealing with deleted pages, and would break all talk subpages.
Comment 3 Nick Jenkins 2005-10-12 08:55:44 UTC
Okay, understood, not useful or even harmful in the general case. Probably
useful to me for a personal wiki homepage though, because my requirements are
very different (I want a very low-maintenance site that I can set-and-forget for
months at a time, and the worst-case-scenario for me with this change + a few
other access-restrictions is that vandals can fill the talk pages of already
existing articles with garbage, but cannot alter the articles themselves, and
they also can't add random talk pages or new articles).

Note You need to log in before you can comment on or make changes to this bug.


Navigation
Links