Svoboda | Graniru | BBC Russia | Golosameriki | Facebook
Jump to content

User talk:TheresNoTime

Add topic
From Meta, a Wikimedia project coordination wiki
(Redirected from User talk:There'sNoTime)
Latest comment: 16 hours ago by Matma Rex in topic User:TheresNoTime/stewResponseHelper.js

Reminder to vote now to ratify the Wikimedia Movement Charter

[edit]
You can find this message translated into additional languages on Meta-wiki. Please help translate to your language

Dear Wikimedian,

You are receiving this message because you previously voted in the 2021 Movement Charter Drafting Committee (MCDC) election.

This is a reminder that if you have not voted yet on the ratification of the final Wikimedia Movement Charter draft, please do so by July 9, 2024 at 23:59 UTC.

You can read the final text of the Wikimedia Movement Charter in your language. Following that, check on whether you are eligible to vote. If you are eligible, cast your vote on SecurePoll.

On behalf of the Charter Electoral Commission,

RamzyM (WMF) 15:24, 5 July 2024 (UTC)Reply

User:TheresNoTime/stewResponseHelper.js

[edit]

A bug in this script was reported here: T371735. To fix, please replace this function:

  // https://stackoverflow.com/a/26744533
  function getURLParams(k) {
    var p = {};
    location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (s, k, v) {
      p[k] = v;
    });
    return k ? p[k] : p;
  }

with:

  function getURLParams(k) {
    var url = new URL(location.href);
    return url.searchParams.get(k);
  }

Matma Rex (talk) 09:57, 6 August 2024 (UTC)Reply