diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/COMMIT_EDITMSG ./wordpress-3.4.2/.git/COMMIT_EDITMSG
*** ./wordpress-3.4.1/.git/COMMIT_EDITMSG 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/COMMIT_EDITMSG 2012-09-10 14:16:46.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ Initial
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/config ./wordpress-3.4.2/.git/config
*** ./wordpress-3.4.1/.git/config 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/config 2012-09-10 14:16:34.000000000 -0500
***************
*** 0 ****
--- 1,5 ----
+ [core]
+ repositoryformatversion = 0
+ filemode = true
+ bare = false
+ logallrefupdates = true
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/description ./wordpress-3.4.2/.git/description
*** ./wordpress-3.4.1/.git/description 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/description 2012-09-10 14:16:34.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ Unnamed repository; edit this file 'description' to name the repository.
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/HEAD ./wordpress-3.4.2/.git/HEAD
*** ./wordpress-3.4.1/.git/HEAD 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/HEAD 2012-09-10 14:16:38.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ ref: refs/heads/3.4.2
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/hooks/applypatch-msg.sample ./wordpress-3.4.2/.git/hooks/applypatch-msg.sample
*** ./wordpress-3.4.1/.git/hooks/applypatch-msg.sample 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/hooks/applypatch-msg.sample 2012-09-10 14:16:34.000000000 -0500
***************
*** 0 ****
--- 1,15 ----
+ #!/bin/sh
+ #
+ # An example hook script to check the commit log message taken by
+ # applypatch from an e-mail message.
+ #
+ # The hook should exit with non-zero status after issuing an
+ # appropriate message if it wants to stop the commit. The hook is
+ # allowed to edit the commit message file.
+ #
+ # To enable this hook, rename this file to "applypatch-msg".
+
+ . git-sh-setup
+ test -x "$GIT_DIR/hooks/commit-msg" &&
+ exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"}
+ :
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/hooks/commit-msg.sample ./wordpress-3.4.2/.git/hooks/commit-msg.sample
*** ./wordpress-3.4.1/.git/hooks/commit-msg.sample 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/hooks/commit-msg.sample 2012-09-10 14:16:34.000000000 -0500
***************
*** 0 ****
--- 1,24 ----
+ #!/bin/sh
+ #
+ # An example hook script to check the commit log message.
+ # Called by "git commit" with one argument, the name of the file
+ # that has the commit message. The hook should exit with non-zero
+ # status after issuing an appropriate message if it wants to stop the
+ # commit. The hook is allowed to edit the commit message file.
+ #
+ # To enable this hook, rename this file to "commit-msg".
+
+ # Uncomment the below to add a Signed-off-by line to the message.
+ # Doing this in a hook is a bad idea in general, but the prepare-commit-msg
+ # hook is more suited to it.
+ #
+ # SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
+ # grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
+
+ # This example catches duplicate Signed-off-by lines.
+
+ test "" = "$(grep '^Signed-off-by: ' "$1" |
+ sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || {
+ echo >&2 Duplicate Signed-off-by lines.
+ exit 1
+ }
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/hooks/post-commit.sample ./wordpress-3.4.2/.git/hooks/post-commit.sample
*** ./wordpress-3.4.1/.git/hooks/post-commit.sample 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/hooks/post-commit.sample 2012-09-10 14:16:34.000000000 -0500
***************
*** 0 ****
--- 1,8 ----
+ #!/bin/sh
+ #
+ # An example hook script that is called after a successful
+ # commit is made.
+ #
+ # To enable this hook, rename this file to "post-commit".
+
+ : Nothing
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/hooks/post-receive.sample ./wordpress-3.4.2/.git/hooks/post-receive.sample
*** ./wordpress-3.4.1/.git/hooks/post-receive.sample 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/hooks/post-receive.sample 2012-09-10 14:16:34.000000000 -0500
***************
*** 0 ****
--- 1,15 ----
+ #!/bin/sh
+ #
+ # An example hook script for the "post-receive" event.
+ #
+ # The "post-receive" script is run after receive-pack has accepted a pack
+ # and the repository has been updated. It is passed arguments in through
+ # stdin in the form
+ #
+ # For example:
+ # aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master
+ #
+ # see contrib/hooks/ for a sample, or uncomment the next line and
+ # rename the file to "post-receive".
+
+ #. /usr/share/git-core/contrib/hooks/post-receive-email
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/hooks/post-update.sample ./wordpress-3.4.2/.git/hooks/post-update.sample
*** ./wordpress-3.4.1/.git/hooks/post-update.sample 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/hooks/post-update.sample 2012-09-10 14:16:34.000000000 -0500
***************
*** 0 ****
--- 1,8 ----
+ #!/bin/sh
+ #
+ # An example hook script to prepare a packed repository for use over
+ # dumb transports.
+ #
+ # To enable this hook, rename this file to "post-update".
+
+ exec git update-server-info
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/hooks/pre-applypatch.sample ./wordpress-3.4.2/.git/hooks/pre-applypatch.sample
*** ./wordpress-3.4.1/.git/hooks/pre-applypatch.sample 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/hooks/pre-applypatch.sample 2012-09-10 14:16:34.000000000 -0500
***************
*** 0 ****
--- 1,14 ----
+ #!/bin/sh
+ #
+ # An example hook script to verify what is about to be committed
+ # by applypatch from an e-mail message.
+ #
+ # The hook should exit with non-zero status after issuing an
+ # appropriate message if it wants to stop the commit.
+ #
+ # To enable this hook, rename this file to "pre-applypatch".
+
+ . git-sh-setup
+ test -x "$GIT_DIR/hooks/pre-commit" &&
+ exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"}
+ :
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/hooks/pre-commit.sample ./wordpress-3.4.2/.git/hooks/pre-commit.sample
*** ./wordpress-3.4.1/.git/hooks/pre-commit.sample 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/hooks/pre-commit.sample 2012-09-10 14:16:34.000000000 -0500
***************
*** 0 ****
--- 1,50 ----
+ #!/bin/sh
+ #
+ # An example hook script to verify what is about to be committed.
+ # Called by "git commit" with no arguments. The hook should
+ # exit with non-zero status after issuing an appropriate message if
+ # it wants to stop the commit.
+ #
+ # To enable this hook, rename this file to "pre-commit".
+
+ if git rev-parse --verify HEAD >/dev/null 2>&1
+ then
+ against=HEAD
+ else
+ # Initial commit: diff against an empty tree object
+ against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
+ fi
+
+ # If you want to allow non-ascii filenames set this variable to true.
+ allownonascii=$(git config hooks.allownonascii)
+
+ # Redirect output to stderr.
+ exec 1>&2
+
+ # Cross platform projects tend to avoid non-ascii filenames; prevent
+ # them from being added to the repository. We exploit the fact that the
+ # printable range starts at the space character and ends with tilde.
+ if [ "$allownonascii" != "true" ] &&
+ # Note that the use of brackets around a tr range is ok here, (it's
+ # even required, for portability to Solaris 10's /usr/bin/tr), since
+ # the square bracket bytes happen to fall in the designated range.
+ test $(git diff --cached --name-only --diff-filter=A -z $against |
+ LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0
+ then
+ echo "Error: Attempt to add a non-ascii file name."
+ echo
+ echo "This can cause problems if you want to work"
+ echo "with people on other platforms."
+ echo
+ echo "To be portable it is advisable to rename the file ..."
+ echo
+ echo "If you know what you are doing you can disable this"
+ echo "check using:"
+ echo
+ echo " git config hooks.allownonascii true"
+ echo
+ exit 1
+ fi
+
+ # If there are whitespace errors, print the offending file names and fail.
+ exec git diff-index --check --cached $against --
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/hooks/prepare-commit-msg.sample ./wordpress-3.4.2/.git/hooks/prepare-commit-msg.sample
*** ./wordpress-3.4.1/.git/hooks/prepare-commit-msg.sample 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/hooks/prepare-commit-msg.sample 2012-09-10 14:16:34.000000000 -0500
***************
*** 0 ****
--- 1,36 ----
+ #!/bin/sh
+ #
+ # An example hook script to prepare the commit log message.
+ # Called by "git commit" with the name of the file that has the
+ # commit message, followed by the description of the commit
+ # message's source. The hook's purpose is to edit the commit
+ # message file. If the hook fails with a non-zero status,
+ # the commit is aborted.
+ #
+ # To enable this hook, rename this file to "prepare-commit-msg".
+
+ # This hook includes three examples. The first comments out the
+ # "Conflicts:" part of a merge commit.
+ #
+ # The second includes the output of "git diff --name-status -r"
+ # into the message, just before the "git status" output. It is
+ # commented because it doesn't cope with --amend or with squashed
+ # commits.
+ #
+ # The third example adds a Signed-off-by line to the message, that can
+ # still be edited. This is rarely a good idea.
+
+ case "$2,$3" in
+ merge,)
+ /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;;
+
+ # ,|template,)
+ # /usr/bin/perl -i.bak -pe '
+ # print "\n" . `git diff --cached --name-status -r`
+ # if /^#/ && $first++ == 0' "$1" ;;
+
+ *) ;;
+ esac
+
+ # SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
+ # grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/hooks/pre-rebase.sample ./wordpress-3.4.2/.git/hooks/pre-rebase.sample
*** ./wordpress-3.4.1/.git/hooks/pre-rebase.sample 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/hooks/pre-rebase.sample 2012-09-10 14:16:34.000000000 -0500
***************
*** 0 ****
--- 1,169 ----
+ #!/bin/sh
+ #
+ # Copyright (c) 2006, 2008 Junio C Hamano
+ #
+ # The "pre-rebase" hook is run just before "git rebase" starts doing
+ # its job, and can prevent the command from running by exiting with
+ # non-zero status.
+ #
+ # The hook is called with the following parameters:
+ #
+ # $1 -- the upstream the series was forked from.
+ # $2 -- the branch being rebased (or empty when rebasing the current branch).
+ #
+ # This sample shows how to prevent topic branches that are already
+ # merged to 'next' branch from getting rebased, because allowing it
+ # would result in rebasing already published history.
+
+ publish=next
+ basebranch="$1"
+ if test "$#" = 2
+ then
+ topic="refs/heads/$2"
+ else
+ topic=`git symbolic-ref HEAD` ||
+ exit 0 ;# we do not interrupt rebasing detached HEAD
+ fi
+
+ case "$topic" in
+ refs/heads/??/*)
+ ;;
+ *)
+ exit 0 ;# we do not interrupt others.
+ ;;
+ esac
+
+ # Now we are dealing with a topic branch being rebased
+ # on top of master. Is it OK to rebase it?
+
+ # Does the topic really exist?
+ git show-ref -q "$topic" || {
+ echo >&2 "No such branch $topic"
+ exit 1
+ }
+
+ # Is topic fully merged to master?
+ not_in_master=`git rev-list --pretty=oneline ^master "$topic"`
+ if test -z "$not_in_master"
+ then
+ echo >&2 "$topic is fully merged to master; better remove it."
+ exit 1 ;# we could allow it, but there is no point.
+ fi
+
+ # Is topic ever merged to next? If so you should not be rebasing it.
+ only_next_1=`git rev-list ^master "^$topic" ${publish} | sort`
+ only_next_2=`git rev-list ^master ${publish} | sort`
+ if test "$only_next_1" = "$only_next_2"
+ then
+ not_in_topic=`git rev-list "^$topic" master`
+ if test -z "$not_in_topic"
+ then
+ echo >&2 "$topic is already up-to-date with master"
+ exit 1 ;# we could allow it, but there is no point.
+ else
+ exit 0
+ fi
+ else
+ not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"`
+ /usr/bin/perl -e '
+ my $topic = $ARGV[0];
+ my $msg = "* $topic has commits already merged to public branch:\n";
+ my (%not_in_next) = map {
+ /^([0-9a-f]+) /;
+ ($1 => 1);
+ } split(/\n/, $ARGV[1]);
+ for my $elem (map {
+ /^([0-9a-f]+) (.*)$/;
+ [$1 => $2];
+ } split(/\n/, $ARGV[2])) {
+ if (!exists $not_in_next{$elem->[0]}) {
+ if ($msg) {
+ print STDERR $msg;
+ undef $msg;
+ }
+ print STDERR " $elem->[1]\n";
+ }
+ }
+ ' "$topic" "$not_in_next" "$not_in_master"
+ exit 1
+ fi
+
+ exit 0
+
+ ################################################################
+
+ This sample hook safeguards topic branches that have been
+ published from being rewound.
+
+ The workflow assumed here is:
+
+ * Once a topic branch forks from "master", "master" is never
+ merged into it again (either directly or indirectly).
+
+ * Once a topic branch is fully cooked and merged into "master",
+ it is deleted. If you need to build on top of it to correct
+ earlier mistakes, a new topic branch is created by forking at
+ the tip of the "master". This is not strictly necessary, but
+ it makes it easier to keep your history simple.
+
+ * Whenever you need to test or publish your changes to topic
+ branches, merge them into "next" branch.
+
+ The script, being an example, hardcodes the publish branch name
+ to be "next", but it is trivial to make it configurable via
+ $GIT_DIR/config mechanism.
+
+ With this workflow, you would want to know:
+
+ (1) ... if a topic branch has ever been merged to "next". Young
+ topic branches can have stupid mistakes you would rather
+ clean up before publishing, and things that have not been
+ merged into other branches can be easily rebased without
+ affecting other people. But once it is published, you would
+ not want to rewind it.
+
+ (2) ... if a topic branch has been fully merged to "master".
+ Then you can delete it. More importantly, you should not
+ build on top of it -- other people may already want to
+ change things related to the topic as patches against your
+ "master", so if you need further changes, it is better to
+ fork the topic (perhaps with the same name) afresh from the
+ tip of "master".
+
+ Let's look at this example:
+
+ o---o---o---o---o---o---o---o---o---o "next"
+ / / / /
+ / a---a---b A / /
+ / / / /
+ / / c---c---c---c B /
+ / / / \ /
+ / / / b---b C \ /
+ / / / / \ /
+ ---o---o---o---o---o---o---o---o---o---o---o "master"
+
+
+ A, B and C are topic branches.
+
+ * A has one fix since it was merged up to "next".
+
+ * B has finished. It has been fully merged up to "master" and "next",
+ and is ready to be deleted.
+
+ * C has not merged to "next" at all.
+
+ We would want to allow C to be rebased, refuse A, and encourage
+ B to be deleted.
+
+ To compute (1):
+
+ git rev-list ^master ^topic next
+ git rev-list ^master next
+
+ if these match, topic has not merged in next at all.
+
+ To compute (2):
+
+ git rev-list master..topic
+
+ if this is empty, it is fully merged to "master".
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/hooks/update.sample ./wordpress-3.4.2/.git/hooks/update.sample
*** ./wordpress-3.4.1/.git/hooks/update.sample 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/hooks/update.sample 2012-09-10 14:16:34.000000000 -0500
***************
*** 0 ****
--- 1,128 ----
+ #!/bin/sh
+ #
+ # An example hook script to blocks unannotated tags from entering.
+ # Called by "git receive-pack" with arguments: refname sha1-old sha1-new
+ #
+ # To enable this hook, rename this file to "update".
+ #
+ # Config
+ # ------
+ # hooks.allowunannotated
+ # This boolean sets whether unannotated tags will be allowed into the
+ # repository. By default they won't be.
+ # hooks.allowdeletetag
+ # This boolean sets whether deleting tags will be allowed in the
+ # repository. By default they won't be.
+ # hooks.allowmodifytag
+ # This boolean sets whether a tag may be modified after creation. By default
+ # it won't be.
+ # hooks.allowdeletebranch
+ # This boolean sets whether deleting branches will be allowed in the
+ # repository. By default they won't be.
+ # hooks.denycreatebranch
+ # This boolean sets whether remotely creating branches will be denied
+ # in the repository. By default this is allowed.
+ #
+
+ # --- Command line
+ refname="$1"
+ oldrev="$2"
+ newrev="$3"
+
+ # --- Safety check
+ if [ -z "$GIT_DIR" ]; then
+ echo "Don't run this script from the command line." >&2
+ echo " (if you want, you could supply GIT_DIR then run" >&2
+ echo " $0 [ ] )" >&2
+ exit 1
+ fi
+
+ if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then
+ echo "Usage: $0 [ ] " >&2
+ exit 1
+ fi
+
+ # --- Config
+ allowunannotated=$(git config --bool hooks.allowunannotated)
+ allowdeletebranch=$(git config --bool hooks.allowdeletebranch)
+ denycreatebranch=$(git config --bool hooks.denycreatebranch)
+ allowdeletetag=$(git config --bool hooks.allowdeletetag)
+ allowmodifytag=$(git config --bool hooks.allowmodifytag)
+
+ # check for no description
+ projectdesc=$(sed -e '1q' "$GIT_DIR/description")
+ case "$projectdesc" in
+ "Unnamed repository"* | "")
+ echo "*** Project description file hasn't been set" >&2
+ exit 1
+ ;;
+ esac
+
+ # --- Check types
+ # if $newrev is 0000...0000, it's a commit to delete a ref.
+ zero="0000000000000000000000000000000000000000"
+ if [ "$newrev" = "$zero" ]; then
+ newrev_type=delete
+ else
+ newrev_type=$(git cat-file -t $newrev)
+ fi
+
+ case "$refname","$newrev_type" in
+ refs/tags/*,commit)
+ # un-annotated tag
+ short_refname=${refname##refs/tags/}
+ if [ "$allowunannotated" != "true" ]; then
+ echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2
+ echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2
+ exit 1
+ fi
+ ;;
+ refs/tags/*,delete)
+ # delete tag
+ if [ "$allowdeletetag" != "true" ]; then
+ echo "*** Deleting a tag is not allowed in this repository" >&2
+ exit 1
+ fi
+ ;;
+ refs/tags/*,tag)
+ # annotated tag
+ if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1
+ then
+ echo "*** Tag '$refname' already exists." >&2
+ echo "*** Modifying a tag is not allowed in this repository." >&2
+ exit 1
+ fi
+ ;;
+ refs/heads/*,commit)
+ # branch
+ if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then
+ echo "*** Creating a branch is not allowed in this repository" >&2
+ exit 1
+ fi
+ ;;
+ refs/heads/*,delete)
+ # delete branch
+ if [ "$allowdeletebranch" != "true" ]; then
+ echo "*** Deleting a branch is not allowed in this repository" >&2
+ exit 1
+ fi
+ ;;
+ refs/remotes/*,commit)
+ # tracking branch
+ ;;
+ refs/remotes/*,delete)
+ # delete tracking branch
+ if [ "$allowdeletebranch" != "true" ]; then
+ echo "*** Deleting a tracking branch is not allowed in this repository" >&2
+ exit 1
+ fi
+ ;;
+ *)
+ # Anything else (is there anything else?)
+ echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2
+ exit 1
+ ;;
+ esac
+
+ # --- Finished
+ exit 0
Binary files ./wordpress-3.4.1/.git/index and ./wordpress-3.4.2/.git/index differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/info/exclude ./wordpress-3.4.2/.git/info/exclude
*** ./wordpress-3.4.1/.git/info/exclude 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/info/exclude 2012-09-10 14:16:34.000000000 -0500
***************
*** 0 ****
--- 1,6 ----
+ # git ls-files --others --exclude-from=.git/info/exclude
+ # Lines that start with '#' are comments.
+ # For a project mostly in C, the following would be a good set of
+ # exclude patterns (uncomment them if you want to use them):
+ # *.[oa]
+ # *~
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/logs/HEAD ./wordpress-3.4.2/.git/logs/HEAD
*** ./wordpress-3.4.1/.git/logs/HEAD 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/logs/HEAD 2012-09-10 14:16:46.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ 0000000000000000000000000000000000000000 d34c49cf9b08c2547427fed783f09dbe7276a2e6 John Rummel 1347304606 -0500 commit (initial): Initial
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/logs/refs/heads/3.4.2 ./wordpress-3.4.2/.git/logs/refs/heads/3.4.2
*** ./wordpress-3.4.1/.git/logs/refs/heads/3.4.2 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/logs/refs/heads/3.4.2 2012-09-10 14:16:46.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ 0000000000000000000000000000000000000000 d34c49cf9b08c2547427fed783f09dbe7276a2e6 John Rummel 1347304606 -0500 commit (initial): Initial
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/00/502c915ae2a5e5df0bf31b00e3b53849996ef1 ./wordpress-3.4.2/.git/objects/00/502c915ae2a5e5df0bf31b00e3b53849996ef1
*** ./wordpress-3.4.1/.git/objects/00/502c915ae2a5e5df0bf31b00e3b53849996ef1 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/00/502c915ae2a5e5df0bf31b00e3b53849996ef1 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ x=03E@bc'Qy| XN'ߍƍ߽V@d",:E#3'!\߾ a'{QPɮ d5$=9!pߵ,wZ(e^h|m$jŰꑭ.n9:aЛPkE=Hj啗["PnpM0%Z>:'!Y-̹<$g6*m(I`c&V+IR#
+ Σ)^dU 2*TCa:*3KL$o|4ȤXR:ʲC-!q+;SFSJϟ}Hmc23L-S[E%">
mVAkyGsnP?&g*zRV̰Y`gj!{ P|\vRsRS#&Kk_X<يUQOFÚɏ*NvKa4XJWYa;qي 6?eæ
+ X5D6V!|v1dө^eb
+ 3'&z&2TSe8vÅ۞f<\1v7bo
ϣ {b5*DnqUs:HD{Q1ixF¿kYx?
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/03/5a185540a119ad5afef3e5d40a3c2797a27294 and ./wordpress-3.4.2/.git/objects/03/5a185540a119ad5afef3e5d40a3c2797a27294 differ
Binary files ./wordpress-3.4.1/.git/objects/03/80a95a61d5573fd8a0eecfbb63b4998e52cce1 and ./wordpress-3.4.2/.git/objects/03/80a95a61d5573fd8a0eecfbb63b4998e52cce1 differ
Binary files ./wordpress-3.4.1/.git/objects/03/b905bf5bd72ff417563b7f11fffd18044f15f1 and ./wordpress-3.4.2/.git/objects/03/b905bf5bd72ff417563b7f11fffd18044f15f1 differ
Binary files ./wordpress-3.4.1/.git/objects/03/c13f644817e5d174b67fd312054932c1ff0e83 and ./wordpress-3.4.2/.git/objects/03/c13f644817e5d174b67fd312054932c1ff0e83 differ
Binary files ./wordpress-3.4.1/.git/objects/03/c3ee9110c8249d7c93777a02e17f8d181e4368 and ./wordpress-3.4.2/.git/objects/03/c3ee9110c8249d7c93777a02e17f8d181e4368 differ
Binary files ./wordpress-3.4.1/.git/objects/03/d005aebbe1280db653e8c0d34e98867e29d495 and ./wordpress-3.4.2/.git/objects/03/d005aebbe1280db653e8c0d34e98867e29d495 differ
Binary files ./wordpress-3.4.1/.git/objects/03/e06512794a761c81d3ce7e59c820a17a71e099 and ./wordpress-3.4.2/.git/objects/03/e06512794a761c81d3ce7e59c820a17a71e099 differ
Binary files ./wordpress-3.4.1/.git/objects/04/780150b1687255e4f6c7a58184ce0f29e1b4b4 and ./wordpress-3.4.2/.git/objects/04/780150b1687255e4f6c7a58184ce0f29e1b4b4 differ
Binary files ./wordpress-3.4.1/.git/objects/04/79c56cd41e5d460a9c5827280bca7e2c2cb443 and ./wordpress-3.4.2/.git/objects/04/79c56cd41e5d460a9c5827280bca7e2c2cb443 differ
Binary files ./wordpress-3.4.1/.git/objects/04/9005d0e66bed6bee88bb7293a252ec719fc645 and ./wordpress-3.4.2/.git/objects/04/9005d0e66bed6bee88bb7293a252ec719fc645 differ
Binary files ./wordpress-3.4.1/.git/objects/04/bbd2859e2db9805ac17bd220dc5bf68a388b5d and ./wordpress-3.4.2/.git/objects/04/bbd2859e2db9805ac17bd220dc5bf68a388b5d differ
Binary files ./wordpress-3.4.1/.git/objects/04/f140cd2f72c5b7368210c02d2ac3929aaf9c15 and ./wordpress-3.4.2/.git/objects/04/f140cd2f72c5b7368210c02d2ac3929aaf9c15 differ
Binary files ./wordpress-3.4.1/.git/objects/04/fd8be5357b9dfdc2c96fec196d8ff6f2f0d49c and ./wordpress-3.4.2/.git/objects/04/fd8be5357b9dfdc2c96fec196d8ff6f2f0d49c differ
Binary files ./wordpress-3.4.1/.git/objects/05/2bf133458f5c662fe760e1494ec05f75db88cd and ./wordpress-3.4.2/.git/objects/05/2bf133458f5c662fe760e1494ec05f75db88cd differ
Binary files ./wordpress-3.4.1/.git/objects/05/3f5a83a42c05702372c731fef338cb4bef550e and ./wordpress-3.4.2/.git/objects/05/3f5a83a42c05702372c731fef338cb4bef550e differ
Binary files ./wordpress-3.4.1/.git/objects/05/42339298c2bb7142e4cf0a8e65047ff160e1d7 and ./wordpress-3.4.2/.git/objects/05/42339298c2bb7142e4cf0a8e65047ff160e1d7 differ
Binary files ./wordpress-3.4.1/.git/objects/05/7545a5da70ec671a166460a7e17bece4240e41 and ./wordpress-3.4.2/.git/objects/05/7545a5da70ec671a166460a7e17bece4240e41 differ
Binary files ./wordpress-3.4.1/.git/objects/05/85ec462db4509e4fa43240b1df2a591b41939b and ./wordpress-3.4.2/.git/objects/05/85ec462db4509e4fa43240b1df2a591b41939b differ
Binary files ./wordpress-3.4.1/.git/objects/05/89e60317e28b619d6fb84da3bb2d830ca766aa and ./wordpress-3.4.2/.git/objects/05/89e60317e28b619d6fb84da3bb2d830ca766aa differ
Binary files ./wordpress-3.4.1/.git/objects/06/1114b0b411dfe902e15e4d8b24c6e6e36147ee and ./wordpress-3.4.2/.git/objects/06/1114b0b411dfe902e15e4d8b24c6e6e36147ee differ
Binary files ./wordpress-3.4.1/.git/objects/06/54e14cd46b693b4c11717ed33cba8514937e3f and ./wordpress-3.4.2/.git/objects/06/54e14cd46b693b4c11717ed33cba8514937e3f differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/06/6caafbbe47b20c770c214bed445e544305119b ./wordpress-3.4.2/.git/objects/06/6caafbbe47b20c770c214bed445e544305119b
*** ./wordpress-3.4.1/.git/objects/06/6caafbbe47b20c770c214bed445e544305119b 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/06/6caafbbe47b20c770c214bed445e544305119b 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,5 ----
+ xuQJA:{fYv!`&
+ 945lNUwk`[wWェX/2db`"K&H9V++X\v
+ V2ؒ 6$%qFz.ya)ڸ@B / ~^ßx3*:L{C8ɌPEƬSqS䍋5F*N9
+ 辟~-T〔l-2T}q0:%FZmNhM98<"I1 B;2fw2:b\ؚZblШ
+ e-chkN)~Ƃ
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/06/6ee5909ce7faa69d47221f9cda27de05502e3e and ./wordpress-3.4.2/.git/objects/06/6ee5909ce7faa69d47221f9cda27de05502e3e differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/06/7f36c2c65bd295baecb94e5d106adbb9ad8dd1 ./wordpress-3.4.2/.git/objects/06/7f36c2c65bd295baecb94e5d106adbb9ad8dd1
*** ./wordpress-3.4.1/.git/objects/06/7f36c2c65bd295baecb94e5d106adbb9ad8dd1 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/06/7f36c2c65bd295baecb94e5d106adbb9ad8dd1 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,6 ----
+ xVo6ޫW^/͒..k8.ú :i-OEQerζ'[)~$?Rrǯ^ӛj[ gIεfMhh%*ǥh
+ 0Pw-2Y&/-h.*%Ulm
+ Ĉ]Mv2XAu^w1躹[V[DSO!z!k7c`vldz(7C>L6⏼TtYS97Diw^;ڡK>$S(z`d">o?Zyx(
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/06/812cb4109b0b236b9659c570458842e39c6416 and ./wordpress-3.4.2/.git/objects/06/812cb4109b0b236b9659c570458842e39c6416 differ
Binary files ./wordpress-3.4.1/.git/objects/06/949bfe09141df31fede0a4367145bb8f8bdfd6 and ./wordpress-3.4.2/.git/objects/06/949bfe09141df31fede0a4367145bb8f8bdfd6 differ
Binary files ./wordpress-3.4.1/.git/objects/06/c658fbee80bb55d5be0486733ed6291fd22fcd and ./wordpress-3.4.2/.git/objects/06/c658fbee80bb55d5be0486733ed6291fd22fcd differ
Binary files ./wordpress-3.4.1/.git/objects/06/d5a3f9a2671dd4c03d278d8302ac4660608838 and ./wordpress-3.4.2/.git/objects/06/d5a3f9a2671dd4c03d278d8302ac4660608838 differ
Binary files ./wordpress-3.4.1/.git/objects/06/dcf8bce6f960ba56dd5ccf3a0295e53f616b9b and ./wordpress-3.4.2/.git/objects/06/dcf8bce6f960ba56dd5ccf3a0295e53f616b9b differ
Binary files ./wordpress-3.4.1/.git/objects/06/e47507be221d742765f0463ce7f3fc9cd9f945 and ./wordpress-3.4.2/.git/objects/06/e47507be221d742765f0463ce7f3fc9cd9f945 differ
Binary files ./wordpress-3.4.1/.git/objects/06/f53c796062152924d6ce4127fc9d35f1b86e57 and ./wordpress-3.4.2/.git/objects/06/f53c796062152924d6ce4127fc9d35f1b86e57 differ
Binary files ./wordpress-3.4.1/.git/objects/07/62edfecac6c37ed16ac77637b1730a55888f9e and ./wordpress-3.4.2/.git/objects/07/62edfecac6c37ed16ac77637b1730a55888f9e differ
Binary files ./wordpress-3.4.1/.git/objects/07/92e1fef5b7c1b496b98be2137be070790cbaa1 and ./wordpress-3.4.2/.git/objects/07/92e1fef5b7c1b496b98be2137be070790cbaa1 differ
Binary files ./wordpress-3.4.1/.git/objects/07/b149e596438d784b20d5d1ef9cab00c5a795a0 and ./wordpress-3.4.2/.git/objects/07/b149e596438d784b20d5d1ef9cab00c5a795a0 differ
Binary files ./wordpress-3.4.1/.git/objects/07/e63fe85e38bb144e1de5e7b530dfeea4e3c5f0 and ./wordpress-3.4.2/.git/objects/07/e63fe85e38bb144e1de5e7b530dfeea4e3c5f0 differ
Binary files ./wordpress-3.4.1/.git/objects/07/f04871d7419bd219effe60705e1a45b724677f and ./wordpress-3.4.2/.git/objects/07/f04871d7419bd219effe60705e1a45b724677f differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/08/0d74d7c5a3aa64d0a6e71951c57d6762f80a7a ./wordpress-3.4.2/.git/objects/08/0d74d7c5a3aa64d0a6e71951c57d6762f80a7a
*** ./wordpress-3.4.1/.git/objects/08/0d74d7c5a3aa64d0a6e71951c57d6762f80a7a 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/08/0d74d7c5a3aa64d0a6e71951c57d6762f80a7a 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ xMK1=WmK͂^tKC>MLߤwޏG^bq{u뻎A;6"|}aN;:#aʔ
+ !lvki&z{Ҩϧ.^:J(
/j~4"j
_ RVP-(+YK-(I䄭˳94e)Ofw,!ۈ;K/q,
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/08/3b5c429dfd2adf8dde292cd5f3a39003c9bfc6 and ./wordpress-3.4.2/.git/objects/08/3b5c429dfd2adf8dde292cd5f3a39003c9bfc6 differ
Binary files ./wordpress-3.4.1/.git/objects/08/79eceb378507259c0641b3230ec723a209172a and ./wordpress-3.4.2/.git/objects/08/79eceb378507259c0641b3230ec723a209172a differ
Binary files ./wordpress-3.4.1/.git/objects/08/f21720299cdd39dbe340e99bb37195645a7da8 and ./wordpress-3.4.2/.git/objects/08/f21720299cdd39dbe340e99bb37195645a7da8 differ
Binary files ./wordpress-3.4.1/.git/objects/09/c5b6789b39b5d83a9516382a1c04b8f19769c0 and ./wordpress-3.4.2/.git/objects/09/c5b6789b39b5d83a9516382a1c04b8f19769c0 differ
Binary files ./wordpress-3.4.1/.git/objects/0a/1dbf32adac2b9882996d3b04481c347fde31bb and ./wordpress-3.4.2/.git/objects/0a/1dbf32adac2b9882996d3b04481c347fde31bb differ
Binary files ./wordpress-3.4.1/.git/objects/0a/631d61dddc8998aba660d8e30b37005dcaecf7 and ./wordpress-3.4.2/.git/objects/0a/631d61dddc8998aba660d8e30b37005dcaecf7 differ
Binary files ./wordpress-3.4.1/.git/objects/0a/c2af4d9738299d830a5677281bb5579d2cfebd and ./wordpress-3.4.2/.git/objects/0a/c2af4d9738299d830a5677281bb5579d2cfebd differ
Binary files ./wordpress-3.4.1/.git/objects/0a/f3c1215e7ead9eb64e5fb9708bd10cf29efd7f and ./wordpress-3.4.2/.git/objects/0a/f3c1215e7ead9eb64e5fb9708bd10cf29efd7f differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/0b/2cfd26f4b8c9ff93a508761576593313e99a5e ./wordpress-3.4.2/.git/objects/0b/2cfd26f4b8c9ff93a508761576593313e99a5e
*** ./wordpress-3.4.1/.git/objects/0b/2cfd26f4b8c9ff93a508761576593313e99a5e 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/0b/2cfd26f4b8c9ff93a508761576593313e99a5e 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ xUN0NM"Pz?7qzKWMvqwg0ʀb{A]qƔ(S>K<º{N9QiU?;»D)ya9Ncęw^2R"?I$WxHG2Rbt?ӥ
+ RG+p2۴h9bLvBB^2a$K$ק\Syςea
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/0b/448aa4b628184535079217a67b1b10f135d4e3 and ./wordpress-3.4.2/.git/objects/0b/448aa4b628184535079217a67b1b10f135d4e3 differ
Binary files ./wordpress-3.4.1/.git/objects/0b/6273445a830ebbb45b3715a3e078c062858deb and ./wordpress-3.4.2/.git/objects/0b/6273445a830ebbb45b3715a3e078c062858deb differ
Binary files ./wordpress-3.4.1/.git/objects/0b/93a89b9a0f089342cecaf4deaef48382523d03 and ./wordpress-3.4.2/.git/objects/0b/93a89b9a0f089342cecaf4deaef48382523d03 differ
Binary files ./wordpress-3.4.1/.git/objects/0b/b999a49f7826a68a6edcd126cedd854b99dac1 and ./wordpress-3.4.2/.git/objects/0b/b999a49f7826a68a6edcd126cedd854b99dac1 differ
Binary files ./wordpress-3.4.1/.git/objects/0b/cfada4ba0ea30ab8a5bb39ae70e01ee34d5b37 and ./wordpress-3.4.2/.git/objects/0b/cfada4ba0ea30ab8a5bb39ae70e01ee34d5b37 differ
Binary files ./wordpress-3.4.1/.git/objects/0b/dcc5ec972638073e627ef3e06233660afa15df and ./wordpress-3.4.2/.git/objects/0b/dcc5ec972638073e627ef3e06233660afa15df differ
Binary files ./wordpress-3.4.1/.git/objects/0c/3ccb3cac8a5d8b0a84c431062f3885931e26cb and ./wordpress-3.4.2/.git/objects/0c/3ccb3cac8a5d8b0a84c431062f3885931e26cb differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/0c/49e06983f1fff4bc0834b4d86ce39b8a36a914 ./wordpress-3.4.2/.git/objects/0c/49e06983f1fff4bc0834b4d86ce39b8a36a914
*** ./wordpress-3.4.1/.git/objects/0c/49e06983f1fff4bc0834b4d86ce39b8a36a914 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/0c/49e06983f1fff4bc0834b4d86ce39b8a36a914 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ xKOR047dptLgg+sO2OF Ysg\zNR\i:efeqͷo*`>vJ8$Ƙ_,So-/EFnoڎفyus=
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/0c/5928c6a9658db8120b67736e510af5555379c5 and ./wordpress-3.4.2/.git/objects/0c/5928c6a9658db8120b67736e510af5555379c5 differ
Binary files ./wordpress-3.4.1/.git/objects/0d/1dc7adaddcae26915f927c0a6bd6a435ad9ad8 and ./wordpress-3.4.2/.git/objects/0d/1dc7adaddcae26915f927c0a6bd6a435ad9ad8 differ
Binary files ./wordpress-3.4.1/.git/objects/0d/7cc6eb97d114e3030494c36019d291e8ad5b7f and ./wordpress-3.4.2/.git/objects/0d/7cc6eb97d114e3030494c36019d291e8ad5b7f differ
Binary files ./wordpress-3.4.1/.git/objects/0d/94937685907c0a010989f29f1feedbbe0058e8 and ./wordpress-3.4.2/.git/objects/0d/94937685907c0a010989f29f1feedbbe0058e8 differ
Binary files ./wordpress-3.4.1/.git/objects/0d/99fd009ae3d587fdd5ec664a25e4cd240d7ea2 and ./wordpress-3.4.2/.git/objects/0d/99fd009ae3d587fdd5ec664a25e4cd240d7ea2 differ
Binary files ./wordpress-3.4.1/.git/objects/0d/b27183f4ec5d4badb1747bf404c6e98455f5e9 and ./wordpress-3.4.2/.git/objects/0d/b27183f4ec5d4badb1747bf404c6e98455f5e9 differ
Binary files ./wordpress-3.4.1/.git/objects/0e/3d1c4c1393ee48b915ced06ed3ba375ee4f53f and ./wordpress-3.4.2/.git/objects/0e/3d1c4c1393ee48b915ced06ed3ba375ee4f53f differ
Binary files ./wordpress-3.4.1/.git/objects/0e/7e227b968401064f4015745187ecbe725af4a6 and ./wordpress-3.4.2/.git/objects/0e/7e227b968401064f4015745187ecbe725af4a6 differ
Binary files ./wordpress-3.4.1/.git/objects/0e/987edef41f4aff606de979f3029a647a2df76c and ./wordpress-3.4.2/.git/objects/0e/987edef41f4aff606de979f3029a647a2df76c differ
Binary files ./wordpress-3.4.1/.git/objects/0e/9f702357af08317c8ed327c638496ea606b474 and ./wordpress-3.4.2/.git/objects/0e/9f702357af08317c8ed327c638496ea606b474 differ
Binary files ./wordpress-3.4.1/.git/objects/0e/bc4f3fcecc800a67a4809b4f67fc62de34f1e5 and ./wordpress-3.4.2/.git/objects/0e/bc4f3fcecc800a67a4809b4f67fc62de34f1e5 differ
Binary files ./wordpress-3.4.1/.git/objects/0f/06c7f171be0f2c4beb0109e653dbaf89568867 and ./wordpress-3.4.2/.git/objects/0f/06c7f171be0f2c4beb0109e653dbaf89568867 differ
Binary files ./wordpress-3.4.1/.git/objects/0f/07a93785dbf34daba8af50f40dab0930b6e2a8 and ./wordpress-3.4.2/.git/objects/0f/07a93785dbf34daba8af50f40dab0930b6e2a8 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/0f/0857181f79555d793bef90e4f52fd46fe19b45 ./wordpress-3.4.2/.git/objects/0f/0857181f79555d793bef90e4f52fd46fe19b45
*** ./wordpress-3.4.1/.git/objects/0f/0857181f79555d793bef90e4f52fd46fe19b45 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/0f/0857181f79555d793bef90e4f52fd46fe19b45 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,3 ----
+ xSM0wI.KN{qЅJ1=kʲ%gM7CW|7kkxl@k'G$bC A֛Ak=υj7QBpT'{m!%$rnX:CK%sOBs($?'XB2"Dj
+ EGu[Z1J k8dN`zy\ݠHF>g\@=jɪ!Z1VN䩅ZyD{Sg{w%I0.uDi2Lb%;|YĒ݈fql-L㼁gQ\5FpՐwU
EX(yVASUfk511Vx^%(PV֡zVRsN]!*r)tYj{*;b˙`emJhȓXqe`&ƖMؿ|^F5AhƄJmĹ^@no"rCkj{s;?h>V\ C
΅QXNd[@)3)Iȗ?i!eZ<7PΕT:%ל+
HQrRB$-BГ'qo. |+?94?k0~W(zc@[@+џ`:Cf8m%RN|l?jVi2xV2 e39)2mYNOJ.#ƤJp[~t
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/18/de01f73f8cef3e23ccdbd317170dbdc69bed2c and ./wordpress-3.4.2/.git/objects/18/de01f73f8cef3e23ccdbd317170dbdc69bed2c differ
Binary files ./wordpress-3.4.1/.git/objects/18/e781179f62ccbf3b30d07b2b057a472f3a9863 and ./wordpress-3.4.2/.git/objects/18/e781179f62ccbf3b30d07b2b057a472f3a9863 differ
Binary files ./wordpress-3.4.1/.git/objects/19/011948bbb693b979585bf9654a6c84964a3628 and ./wordpress-3.4.2/.git/objects/19/011948bbb693b979585bf9654a6c84964a3628 differ
Binary files ./wordpress-3.4.1/.git/objects/19/4e00f54489aac29b19661e83c258ca2c0ffdba and ./wordpress-3.4.2/.git/objects/19/4e00f54489aac29b19661e83c258ca2c0ffdba differ
Binary files ./wordpress-3.4.1/.git/objects/19/726961e7b6f6a7cdfb1e02f20e7fc4a38ebcc1 and ./wordpress-3.4.2/.git/objects/19/726961e7b6f6a7cdfb1e02f20e7fc4a38ebcc1 differ
Binary files ./wordpress-3.4.1/.git/objects/19/9817244219193f45b6f45d1c0aa24de9fb8aa6 and ./wordpress-3.4.2/.git/objects/19/9817244219193f45b6f45d1c0aa24de9fb8aa6 differ
Binary files ./wordpress-3.4.1/.git/objects/19/ac828adb368100f522c5dde2b37f2054687f78 and ./wordpress-3.4.2/.git/objects/19/ac828adb368100f522c5dde2b37f2054687f78 differ
Binary files ./wordpress-3.4.1/.git/objects/19/bed73e48b1af59c71b1177653bda61edfcc335 and ./wordpress-3.4.2/.git/objects/19/bed73e48b1af59c71b1177653bda61edfcc335 differ
Binary files ./wordpress-3.4.1/.git/objects/19/f119c52c2b073418d5e51303871c5118504e90 and ./wordpress-3.4.2/.git/objects/19/f119c52c2b073418d5e51303871c5118504e90 differ
Binary files ./wordpress-3.4.1/.git/objects/1a/0b34bf2801bc79ce9009c7bcb8308d31683e0b and ./wordpress-3.4.2/.git/objects/1a/0b34bf2801bc79ce9009c7bcb8308d31683e0b differ
Binary files ./wordpress-3.4.1/.git/objects/1a/430195f0097412b1c54a1bd9483e2e49af9b31 and ./wordpress-3.4.2/.git/objects/1a/430195f0097412b1c54a1bd9483e2e49af9b31 differ
Binary files ./wordpress-3.4.1/.git/objects/1a/5504236fc729c691731f1f9d065cfc43d40426 and ./wordpress-3.4.2/.git/objects/1a/5504236fc729c691731f1f9d065cfc43d40426 differ
Binary files ./wordpress-3.4.1/.git/objects/1a/76fd5efd04fa8dacf27e4f04fdc5496f0802c8 and ./wordpress-3.4.2/.git/objects/1a/76fd5efd04fa8dacf27e4f04fdc5496f0802c8 differ
Binary files ./wordpress-3.4.1/.git/objects/1a/8d5b7e27125ea93c74e2d1ffcc3b15fb2a0f56 and ./wordpress-3.4.2/.git/objects/1a/8d5b7e27125ea93c74e2d1ffcc3b15fb2a0f56 differ
Binary files ./wordpress-3.4.1/.git/objects/1a/933edf59ddc5cd72a4f0cfd092260146740ab5 and ./wordpress-3.4.2/.git/objects/1a/933edf59ddc5cd72a4f0cfd092260146740ab5 differ
Binary files ./wordpress-3.4.1/.git/objects/1a/b717e8eef8b1779deec03752116ad17300ab9f and ./wordpress-3.4.2/.git/objects/1a/b717e8eef8b1779deec03752116ad17300ab9f differ
Binary files ./wordpress-3.4.1/.git/objects/1a/e3e870ebf4243745d12235373d27ff311b07c7 and ./wordpress-3.4.2/.git/objects/1a/e3e870ebf4243745d12235373d27ff311b07c7 differ
Binary files ./wordpress-3.4.1/.git/objects/1b/1830f41f8b03a941875c47876a30f975acb1de and ./wordpress-3.4.2/.git/objects/1b/1830f41f8b03a941875c47876a30f975acb1de differ
Binary files ./wordpress-3.4.1/.git/objects/1b/23dad80f0cfb129599fe99b259cb67c3670368 and ./wordpress-3.4.2/.git/objects/1b/23dad80f0cfb129599fe99b259cb67c3670368 differ
Binary files ./wordpress-3.4.1/.git/objects/1b/2d428333cc5ed443cefb496634695c50533c16 and ./wordpress-3.4.2/.git/objects/1b/2d428333cc5ed443cefb496634695c50533c16 differ
Binary files ./wordpress-3.4.1/.git/objects/1b/3e8c933896748601e83fde4b55dafdf2dd7c82 and ./wordpress-3.4.2/.git/objects/1b/3e8c933896748601e83fde4b55dafdf2dd7c82 differ
Binary files ./wordpress-3.4.1/.git/objects/1b/860d2766df8cca052a2c816279be6cd20af7d3 and ./wordpress-3.4.2/.git/objects/1b/860d2766df8cca052a2c816279be6cd20af7d3 differ
Binary files ./wordpress-3.4.1/.git/objects/1b/a21e3ce3d772a542c80a3f57097e723c7a1ed6 and ./wordpress-3.4.2/.git/objects/1b/a21e3ce3d772a542c80a3f57097e723c7a1ed6 differ
Binary files ./wordpress-3.4.1/.git/objects/1b/ab9fb1adc1bc1b73cc58a747852def83f36a99 and ./wordpress-3.4.2/.git/objects/1b/ab9fb1adc1bc1b73cc58a747852def83f36a99 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/1b/d68c3735b61e6354272293a2169108c4d26632 ./wordpress-3.4.2/.git/objects/1b/d68c3735b61e6354272293a2169108c4d26632
*** ./wordpress-3.4.1/.git/objects/1b/d68c3735b61e6354272293a2169108c4d26632 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/1b/d68c3735b61e6354272293a2169108c4d26632 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ xe=0qWZ,u/s҄+-w]l~ybJlATŶ + YGĊ9dcCp?`SBodt~\
+ c?¶_\%d9g|+1^)ЭwL1_F pᄓEatSC7%IC I^6_B'yƻnԕ'JEmVR:"F^ZEaF>G_+Dx3Ů:[3Ac^d\[Ez
+ E`Bh*xІ!=]Hd[9LGyhR>-|̈́ĪXI@1cnſ1C1M z}ŀQBۃW 9$|aOEp92'Jћkz
HOAvF$diNo<׀/Np0 z:ЭMp~.H9|/:=#2ӈAo{gz"uT#8!~ixCRO/JO2nʺbU_p/9!|h[bF``e21QhLsKcV45\lLrYFEM/rִj.E4_=,WY'w\g%70{.!옐P:S`̒J"2,ɪBlJVG!aJ
+ 4L0Qi..Dr@oK?
[NqغFCq5KC-PWPpWwlSRvd>Zf@I*t6
+ L9ܿ.mmi=XnJ$ߎ
+ 0y,P^Ԇ+`mtW
+ +\|$b0.mlBZ*dwI+4nJY.f,=_a|[[9e?;djJgdwÉsYLùFɳ(֠Q>\[;_4k2;nϴ-hݢZc˫D|v.eEK_%%beq-JF^i^lm7ieOq2J*=259u9vC;8O^Ԉ)KٿF^
+ TnBY$
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/20/7dd2a37d79e4704227d05d992909232087a716 and ./wordpress-3.4.2/.git/objects/20/7dd2a37d79e4704227d05d992909232087a716 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/20/97708f0b219d1bd752d37a48258fe71be38a37 ./wordpress-3.4.2/.git/objects/20/97708f0b219d1bd752d37a48258fe71be38a37
*** ./wordpress-3.4.1/.git/objects/20/97708f0b219d1bd752d37a48258fe71be38a37 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/20/97708f0b219d1bd752d37a48258fe71be38a37 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ xm
+ 0D=+4=_ii6d7I7.{;3@&F٧0*?2#Zw3Q*D(ǥPkZh?9k37
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/20/bab86d450a059d20d244573747e4f9e03a87fe and ./wordpress-3.4.2/.git/objects/20/bab86d450a059d20d244573747e4f9e03a87fe differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/20/d9e7128d5168e33be5b8e0f39efdfdcde79517 ./wordpress-3.4.2/.git/objects/20/d9e7128d5168e33be5b8e0f39efdfdcde79517
*** ./wordpress-3.4.1/.git/objects/20/d9e7128d5168e33be5b8e0f39efdfdcde79517 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/20/d9e7128d5168e33be5b8e0f39efdfdcde79517 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ xKOR041aptLagXpƘ=zoߞ={200(dadg`c@jC%vi5أŠ>{`jeKu"95-ul *I,>`׃@iWkUj\=TdCq>s<
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/20/fcf405872ae508097fd4a2650719d50a93cf7d and ./wordpress-3.4.2/.git/objects/20/fcf405872ae508097fd4a2650719d50a93cf7d differ
Binary files ./wordpress-3.4.1/.git/objects/21/0de1b315e95f84d4c2bbdc37b844fe147caac3 and ./wordpress-3.4.2/.git/objects/21/0de1b315e95f84d4c2bbdc37b844fe147caac3 differ
Binary files ./wordpress-3.4.1/.git/objects/21/46645adde749e93fb2e6298a99b477f1c35d4b and ./wordpress-3.4.2/.git/objects/21/46645adde749e93fb2e6298a99b477f1c35d4b differ
Binary files ./wordpress-3.4.1/.git/objects/21/4ca3696b2a8a10eb6c6c518349763472c358e6 and ./wordpress-3.4.2/.git/objects/21/4ca3696b2a8a10eb6c6c518349763472c358e6 differ
Binary files ./wordpress-3.4.1/.git/objects/21/7ee7b6a56bd74cd4073555bf5841ca466e4a6d and ./wordpress-3.4.2/.git/objects/21/7ee7b6a56bd74cd4073555bf5841ca466e4a6d differ
Binary files ./wordpress-3.4.1/.git/objects/21/8e184d350fd762ddd69933bdb35ec066ee0a88 and ./wordpress-3.4.2/.git/objects/21/8e184d350fd762ddd69933bdb35ec066ee0a88 differ
Binary files ./wordpress-3.4.1/.git/objects/22/039fd4271a2cf5054e55779b4d142b45f15b15 and ./wordpress-3.4.2/.git/objects/22/039fd4271a2cf5054e55779b4d142b45f15b15 differ
Binary files ./wordpress-3.4.1/.git/objects/22/25a5fe1a5ae76fb165238debf311b1d4f94b7b and ./wordpress-3.4.2/.git/objects/22/25a5fe1a5ae76fb165238debf311b1d4f94b7b differ
Binary files ./wordpress-3.4.1/.git/objects/22/36549fc7e17e1800ab343588bb2a359369e862 and ./wordpress-3.4.2/.git/objects/22/36549fc7e17e1800ab343588bb2a359369e862 differ
Binary files ./wordpress-3.4.1/.git/objects/22/4f7c8da356a1eae25daea11a4d1a6db5778e3d and ./wordpress-3.4.2/.git/objects/22/4f7c8da356a1eae25daea11a4d1a6db5778e3d differ
Binary files ./wordpress-3.4.1/.git/objects/22/5348db3b1247fc101586ee96578e8f9e3082f7 and ./wordpress-3.4.2/.git/objects/22/5348db3b1247fc101586ee96578e8f9e3082f7 differ
Binary files ./wordpress-3.4.1/.git/objects/22/627dac82a547ef4cf44b31c03ba97606e4c849 and ./wordpress-3.4.2/.git/objects/22/627dac82a547ef4cf44b31c03ba97606e4c849 differ
Binary files ./wordpress-3.4.1/.git/objects/22/7fad959f9e4cc8cec1ebcdca359dc6fee66ec1 and ./wordpress-3.4.2/.git/objects/22/7fad959f9e4cc8cec1ebcdca359dc6fee66ec1 differ
Binary files ./wordpress-3.4.1/.git/objects/22/dc606613407a1e5a92001d8e3d542c8e8284c9 and ./wordpress-3.4.2/.git/objects/22/dc606613407a1e5a92001d8e3d542c8e8284c9 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/23/0a3b1643c17f6f0579c76cac89118cf9f91a6c ./wordpress-3.4.2/.git/objects/23/0a3b1643c17f6f0579c76cac89118cf9f91a6c
*** ./wordpress-3.4.1/.git/objects/23/0a3b1643c17f6f0579c76cac89118cf9f91a6c 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/23/0a3b1643c17f6f0579c76cac89118cf9f91a6c 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,3 ----
+ xQn0D+bpb\M =%Q"+iwIɅEc#qvv:<=6&Eb
+ 8Wy.[Qa(-g,=h~*}]op[m%xVBxhԂ6àP
={̃\ҼdN
+ ;#Ah4?njGvVP6.6C"t-lr.M uWj
{5\\LzqƮ4s
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/23/40baf4f3b6fea7103b9aeaa6a8769269577915 and ./wordpress-3.4.2/.git/objects/23/40baf4f3b6fea7103b9aeaa6a8769269577915 differ
Binary files ./wordpress-3.4.1/.git/objects/23/7563069fb8d85017d249f548b7c940f51d9551 and ./wordpress-3.4.2/.git/objects/23/7563069fb8d85017d249f548b7c940f51d9551 differ
Binary files ./wordpress-3.4.1/.git/objects/23/b0e43dfe293bbd2a14fb58539bd62e2f309b68 and ./wordpress-3.4.2/.git/objects/23/b0e43dfe293bbd2a14fb58539bd62e2f309b68 differ
Binary files ./wordpress-3.4.1/.git/objects/23/fef64c9a4326f02a3e4953120f451b098ea5fa and ./wordpress-3.4.2/.git/objects/23/fef64c9a4326f02a3e4953120f451b098ea5fa differ
Binary files ./wordpress-3.4.1/.git/objects/24/0fff8a16aa55f97260502c39a06afe17246691 and ./wordpress-3.4.2/.git/objects/24/0fff8a16aa55f97260502c39a06afe17246691 differ
Binary files ./wordpress-3.4.1/.git/objects/24/14fef93e24abe5679114060c34e29bcea36a2b and ./wordpress-3.4.2/.git/objects/24/14fef93e24abe5679114060c34e29bcea36a2b differ
Binary files ./wordpress-3.4.1/.git/objects/24/8897c9877233ba4e4f1e6f0e3278050bf746c8 and ./wordpress-3.4.2/.git/objects/24/8897c9877233ba4e4f1e6f0e3278050bf746c8 differ
Binary files ./wordpress-3.4.1/.git/objects/24/8fe00a14d04291255257853ee34ce0ab12e59c and ./wordpress-3.4.2/.git/objects/24/8fe00a14d04291255257853ee34ce0ab12e59c differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/24/925dc94dbd4fe9c02b9f14b7dcf3194b6db8f4 ./wordpress-3.4.2/.git/objects/24/925dc94dbd4fe9c02b9f14b7dcf3194b6db8f4
*** ./wordpress-3.4.1/.git/objects/24/925dc94dbd4fe9c02b9f14b7dcf3194b6db8f4 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/24/925dc94dbd4fe9c02b9f14b7dcf3194b6db8f4 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,3 ----
+ xuRN@~bPb)Ę`v6w[AJ_NS)/!-5B}D82V8ʙsQeOH$H=N`#
+
|VDS^Ơq)sлo4U\Jhi1AbKBIjYׂ1MUn.U6z(܀p`̃}i+BbWsؐ.i]rO9T;A+E%][y8.uAqG=H#"s\#XOS9<˟ĸk{N6C|_6ӈ>Pk;
+ &VΞgŸ15#$j
7H6]T
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/24/b163eba9af2b9ffe65b81999f695da05b4fb96 and ./wordpress-3.4.2/.git/objects/24/b163eba9af2b9ffe65b81999f695da05b4fb96 differ
Binary files ./wordpress-3.4.1/.git/objects/24/e161b7f394a9210e5a0ef859dbb990d181a21d and ./wordpress-3.4.2/.git/objects/24/e161b7f394a9210e5a0ef859dbb990d181a21d differ
Binary files ./wordpress-3.4.1/.git/objects/24/efd82f88a30f11f21eb1c17ed43a469a4d6857 and ./wordpress-3.4.2/.git/objects/24/efd82f88a30f11f21eb1c17ed43a469a4d6857 differ
Binary files ./wordpress-3.4.1/.git/objects/24/f021cd8009095b77b2a5ed451bade86c261c14 and ./wordpress-3.4.2/.git/objects/24/f021cd8009095b77b2a5ed451bade86c261c14 differ
Binary files ./wordpress-3.4.1/.git/objects/25/12ed38ffacbca8436b4d01c0c3a7a0f436eab2 and ./wordpress-3.4.2/.git/objects/25/12ed38ffacbca8436b4d01c0c3a7a0f436eab2 differ
Binary files ./wordpress-3.4.1/.git/objects/25/317e5738bfcce43707ec0a0640533f69eb8fff and ./wordpress-3.4.2/.git/objects/25/317e5738bfcce43707ec0a0640533f69eb8fff differ
Binary files ./wordpress-3.4.1/.git/objects/25/4d5fec1c02e1d487b51599bdeb0802bd44e8d8 and ./wordpress-3.4.2/.git/objects/25/4d5fec1c02e1d487b51599bdeb0802bd44e8d8 differ
Binary files ./wordpress-3.4.1/.git/objects/25/6069fc5963f7ed9f2cbd25fc2f6741db1db859 and ./wordpress-3.4.2/.git/objects/25/6069fc5963f7ed9f2cbd25fc2f6741db1db859 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/25/691c866a609aa066366cecf782ea00c69fd990 ./wordpress-3.4.2/.git/objects/25/691c866a609aa066366cecf782ea00c69fd990
*** ./wordpress-3.4.1/.git/objects/25/691c866a609aa066366cecf782ea00c69fd990 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/25/691c866a609aa066366cecf782ea00c69fd990 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ xP]K0uw0h:sԩ'T2nI*n1LS|ܓ*^jv taL11h-L-:ÝPrf_i?nel6XB'I?9sB"f6}=!:g<)!_0TQ(ByߍcH :q.j6*_:aCC`Ш7eo¥䓐Ά|胭yu B'Ơt,+Pڃ-P
İZ4w?4ͺOuth,hO^pS~N?K)F1
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/25/a849f82294fa6580175d5fdecb7184fa56f66d and ./wordpress-3.4.2/.git/objects/25/a849f82294fa6580175d5fdecb7184fa56f66d differ
Binary files ./wordpress-3.4.1/.git/objects/26/054392579625c218d0dd2676f5ff1604ea657b and ./wordpress-3.4.2/.git/objects/26/054392579625c218d0dd2676f5ff1604ea657b differ
Binary files ./wordpress-3.4.1/.git/objects/26/37f43d81628f6ae460d351c4cc28b839e8ea5a and ./wordpress-3.4.2/.git/objects/26/37f43d81628f6ae460d351c4cc28b839e8ea5a differ
Binary files ./wordpress-3.4.1/.git/objects/26/79d8b5782ed81984c32c95f564924bf8886164 and ./wordpress-3.4.2/.git/objects/26/79d8b5782ed81984c32c95f564924bf8886164 differ
Binary files ./wordpress-3.4.1/.git/objects/26/d3325d574895ae56811d9ed903971adf4c69e7 and ./wordpress-3.4.2/.git/objects/26/d3325d574895ae56811d9ed903971adf4c69e7 differ
Binary files ./wordpress-3.4.1/.git/objects/27/06fbb21b7cd63858dc6818010c3f022ce91aba and ./wordpress-3.4.2/.git/objects/27/06fbb21b7cd63858dc6818010c3f022ce91aba differ
Binary files ./wordpress-3.4.1/.git/objects/27/2ce3b254d6abc2f7dbd5faee2c63c0dd40c7fb and ./wordpress-3.4.2/.git/objects/27/2ce3b254d6abc2f7dbd5faee2c63c0dd40c7fb differ
Binary files ./wordpress-3.4.1/.git/objects/27/51148de6879ad340006208eb28250474bba8d0 and ./wordpress-3.4.2/.git/objects/27/51148de6879ad340006208eb28250474bba8d0 differ
Binary files ./wordpress-3.4.1/.git/objects/27/58773b1e5c87d17f236aade62cf06990e68fd2 and ./wordpress-3.4.2/.git/objects/27/58773b1e5c87d17f236aade62cf06990e68fd2 differ
Binary files ./wordpress-3.4.1/.git/objects/27/9456936822d7834453475639f5efbaa9fc0b94 and ./wordpress-3.4.2/.git/objects/27/9456936822d7834453475639f5efbaa9fc0b94 differ
Binary files ./wordpress-3.4.1/.git/objects/27/9a75debf98712a6061a0913cde54d30639e2f8 and ./wordpress-3.4.2/.git/objects/27/9a75debf98712a6061a0913cde54d30639e2f8 differ
Binary files ./wordpress-3.4.1/.git/objects/27/a67b8699feb22b40df50c12aae65c92748a33d and ./wordpress-3.4.2/.git/objects/27/a67b8699feb22b40df50c12aae65c92748a33d differ
Binary files ./wordpress-3.4.1/.git/objects/28/036918e0e17cfa72fdccb8a496e3a500d585ed and ./wordpress-3.4.2/.git/objects/28/036918e0e17cfa72fdccb8a496e3a500d585ed differ
Binary files ./wordpress-3.4.1/.git/objects/28/35313feb757e28cfb598f7e5d07de3f7543c11 and ./wordpress-3.4.2/.git/objects/28/35313feb757e28cfb598f7e5d07de3f7543c11 differ
Binary files ./wordpress-3.4.1/.git/objects/28/40a1e2f900fde43f1cfd3c96523030906db974 and ./wordpress-3.4.2/.git/objects/28/40a1e2f900fde43f1cfd3c96523030906db974 differ
Binary files ./wordpress-3.4.1/.git/objects/28/80055cc0f11c60f5688ade044df280856df9a7 and ./wordpress-3.4.2/.git/objects/28/80055cc0f11c60f5688ade044df280856df9a7 differ
Binary files ./wordpress-3.4.1/.git/objects/28/860461b677a7296df5712fc75f26963d61e886 and ./wordpress-3.4.2/.git/objects/28/860461b677a7296df5712fc75f26963d61e886 differ
Binary files ./wordpress-3.4.1/.git/objects/28/897c18d0a73785ec815cedd94d1407600ab46b and ./wordpress-3.4.2/.git/objects/28/897c18d0a73785ec815cedd94d1407600ab46b differ
Binary files ./wordpress-3.4.1/.git/objects/28/b4edbecb542cf8264336e3c4255143dd90896e and ./wordpress-3.4.2/.git/objects/28/b4edbecb542cf8264336e3c4255143dd90896e differ
Binary files ./wordpress-3.4.1/.git/objects/28/fc6bbe60ef1973b78fc273c07af04c5f8d5060 and ./wordpress-3.4.2/.git/objects/28/fc6bbe60ef1973b78fc273c07af04c5f8d5060 differ
Binary files ./wordpress-3.4.1/.git/objects/29/28aa831541628cd15967a241238fad2546520d and ./wordpress-3.4.2/.git/objects/29/28aa831541628cd15967a241238fad2546520d differ
Binary files ./wordpress-3.4.1/.git/objects/29/31cbbc82a9dfbdfc210a6de3dba4de33c6f76a and ./wordpress-3.4.2/.git/objects/29/31cbbc82a9dfbdfc210a6de3dba4de33c6f76a differ
Binary files ./wordpress-3.4.1/.git/objects/29/98f9f3a433c0548ce12116d08c86771765bc6f and ./wordpress-3.4.2/.git/objects/29/98f9f3a433c0548ce12116d08c86771765bc6f differ
Binary files ./wordpress-3.4.1/.git/objects/29/da2a2fccc79981bc54db7513ca6d2374592f9d and ./wordpress-3.4.2/.git/objects/29/da2a2fccc79981bc54db7513ca6d2374592f9d differ
Binary files ./wordpress-3.4.1/.git/objects/29/f814d2982a8925ab0ec46d171a2f95239f99f1 and ./wordpress-3.4.2/.git/objects/29/f814d2982a8925ab0ec46d171a2f95239f99f1 differ
Binary files ./wordpress-3.4.1/.git/objects/2a/202ace0fca632847dd6c4a92b2ea6d758ce090 and ./wordpress-3.4.2/.git/objects/2a/202ace0fca632847dd6c4a92b2ea6d758ce090 differ
Binary files ./wordpress-3.4.1/.git/objects/2a/4ce0a15c5e1be0dd403b436daa2d1544e71674 and ./wordpress-3.4.2/.git/objects/2a/4ce0a15c5e1be0dd403b436daa2d1544e71674 differ
Binary files ./wordpress-3.4.1/.git/objects/2a/5a6e8ceb3bbeef9993896ee8ed3b787823a1a7 and ./wordpress-3.4.2/.git/objects/2a/5a6e8ceb3bbeef9993896ee8ed3b787823a1a7 differ
Binary files ./wordpress-3.4.1/.git/objects/2a/6f3ad2997a337691aa0df2d55a1c968d2fa6b5 and ./wordpress-3.4.2/.git/objects/2a/6f3ad2997a337691aa0df2d55a1c968d2fa6b5 differ
Binary files ./wordpress-3.4.1/.git/objects/2a/bd79952ffa5788c2412f56482ddae1f475a0a2 and ./wordpress-3.4.2/.git/objects/2a/bd79952ffa5788c2412f56482ddae1f475a0a2 differ
Binary files ./wordpress-3.4.1/.git/objects/2a/e01bb8ab9717be546cdd3b779d29a0677009dc and ./wordpress-3.4.2/.git/objects/2a/e01bb8ab9717be546cdd3b779d29a0677009dc differ
Binary files ./wordpress-3.4.1/.git/objects/2b/4774bcf34b401b97c5832cb3fc78fbf8a392cb and ./wordpress-3.4.2/.git/objects/2b/4774bcf34b401b97c5832cb3fc78fbf8a392cb differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/2b/5319267147220ebd7bd9437ec34af19e001ef3 ./wordpress-3.4.2/.git/objects/2b/5319267147220ebd7bd9437ec34af19e001ef3
*** ./wordpress-3.4.1/.git/objects/2b/5319267147220ebd7bd9437ec34af19e001ef3 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/2b/5319267147220ebd7bd9437ec34af19e001ef3 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,3 ----
+ xRN0~,2 i$)k.ЦU &'iMC;qIb~np{}sAӅUw( VUzrjI+%J$Ib:i|
+ >ZL<<a>ZcpS +s+J4|3ApB
6πt3蝔kxfwB
+ s2)9Ý&C!v0<Ke[tHc4 J(6t],%dku!bF/6Yz߈+/CBET't:~^/K.E
\ No newline at end of file
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/2b/5e6a34a4005b41d139e6925911ecf090a45c76 ./wordpress-3.4.2/.git/objects/2b/5e6a34a4005b41d139e6925911ecf090a45c76
*** ./wordpress-3.4.1/.git/objects/2b/5e6a34a4005b41d139e6925911ecf090a45c76 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/2b/5e6a34a4005b41d139e6925911ecf090a45c76 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ xeN0EE>VZPJ ~ړؑ@A;㔴)&3YvzVnJtXzVl:OFK8nQ,Mp'QQ?ƀ,XC)ϭP\V\z7;FQ!(wCWo|)֔0&⢲@6"~Wڗ>EN'
+ ʑsiMѥZ{N?rH)v"6OG%"CRF: T
.Ԫ)Y)xC@q_x;y'z-ԡb?/I_
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/2b/d48c847220525463ba9f3448adadddfe6930c5 and ./wordpress-3.4.2/.git/objects/2b/d48c847220525463ba9f3448adadddfe6930c5 differ
Binary files ./wordpress-3.4.1/.git/objects/2b/f974a26502353772db308819bac9dabe093020 and ./wordpress-3.4.2/.git/objects/2b/f974a26502353772db308819bac9dabe093020 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/2c/0cb874dd20901e18e3b830b9560ab8f7065dfd ./wordpress-3.4.2/.git/objects/2c/0cb874dd20901e18e3b830b9560ab8f7065dfd
*** ./wordpress-3.4.1/.git/objects/2c/0cb874dd20901e18e3b830b9560ab8f7065dfd 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/2c/0cb874dd20901e18e3b830b9560ab8f7065dfd 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,3 ----
+ x]R0<V*H4M
J#'$mN=k+372>||SljͰy&X%a4ܥp~WWĢ/V8
y~F:3"uOx$Iw/TY6QhgSeU=+p{\p<ጢc~a3"eU{JxeAQ<tع~5۲ĻhH5aq/h)? ePVcT
k.zh[0>Lr7rXjenvpUa7s3O4# m6"1~#Onf4":>
Z_%5}G
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/30/31a059138e85b73440aa6590613081ca6b75af and ./wordpress-3.4.2/.git/objects/30/31a059138e85b73440aa6590613081ca6b75af differ
Binary files ./wordpress-3.4.1/.git/objects/30/f0bc8342daaedfbbdf6ccd644b24359bfffbc3 and ./wordpress-3.4.2/.git/objects/30/f0bc8342daaedfbbdf6ccd644b24359bfffbc3 differ
Binary files ./wordpress-3.4.1/.git/objects/31/14456e097d4da0331f93c02be86d8ca761dae7 and ./wordpress-3.4.2/.git/objects/31/14456e097d4da0331f93c02be86d8ca761dae7 differ
Binary files ./wordpress-3.4.1/.git/objects/31/19eb5720edcc316aea37279a38bea940ac1214 and ./wordpress-3.4.2/.git/objects/31/19eb5720edcc316aea37279a38bea940ac1214 differ
Binary files ./wordpress-3.4.1/.git/objects/31/3ca5d17fd827acdf1be0b05ca6a456152259b8 and ./wordpress-3.4.2/.git/objects/31/3ca5d17fd827acdf1be0b05ca6a456152259b8 differ
Binary files ./wordpress-3.4.1/.git/objects/31/5ab527fa270f2b4ffdc10f7fc80d692a763d03 and ./wordpress-3.4.2/.git/objects/31/5ab527fa270f2b4ffdc10f7fc80d692a763d03 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/31/794ba0d26d9febe3121812f8dea6e22401e55b ./wordpress-3.4.2/.git/objects/31/794ba0d26d9febe3121812f8dea6e22401e55b
*** ./wordpress-3.4.1/.git/objects/31/794ba0d26d9febe3121812f8dea6e22401e55b 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/31/794ba0d26d9febe3121812f8dea6e22401e55b 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ xU0E
+ p l(i,(II{n/BΆHy嘂J,xeiRWS .K4f=K=v)";s+K,6
v?^괦b7k;X
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/31/89332ac099d678b3d0fa100a14f734c75e0bf2 and ./wordpress-3.4.2/.git/objects/31/89332ac099d678b3d0fa100a14f734c75e0bf2 differ
Binary files ./wordpress-3.4.1/.git/objects/31/8cf3f64df46ae8b366c601d880c7226d1533ec and ./wordpress-3.4.2/.git/objects/31/8cf3f64df46ae8b366c601d880c7226d1533ec differ
Binary files ./wordpress-3.4.1/.git/objects/31/a13ea6d1ae040aaef4ceb86fa34c0876b884a4 and ./wordpress-3.4.2/.git/objects/31/a13ea6d1ae040aaef4ceb86fa34c0876b884a4 differ
Binary files ./wordpress-3.4.1/.git/objects/31/cc4da35512106d4c2fc53c496ce842a7eb2d67 and ./wordpress-3.4.2/.git/objects/31/cc4da35512106d4c2fc53c496ce842a7eb2d67 differ
Binary files ./wordpress-3.4.1/.git/objects/31/ee7847b2b5a758f305b4dcfcbbbe247ee10e26 and ./wordpress-3.4.2/.git/objects/31/ee7847b2b5a758f305b4dcfcbbbe247ee10e26 differ
Binary files ./wordpress-3.4.1/.git/objects/32/362074490f3f016f29c7ef4862a728c8848732 and ./wordpress-3.4.2/.git/objects/32/362074490f3f016f29c7ef4862a728c8848732 differ
Binary files ./wordpress-3.4.1/.git/objects/32/45c9c7db204f19372a77bb10ebefc74b26917a and ./wordpress-3.4.2/.git/objects/32/45c9c7db204f19372a77bb10ebefc74b26917a differ
Binary files ./wordpress-3.4.1/.git/objects/32/8bfcf324ba9f4634d0fbaef41bba607c4e4f99 and ./wordpress-3.4.2/.git/objects/32/8bfcf324ba9f4634d0fbaef41bba607c4e4f99 differ
Binary files ./wordpress-3.4.1/.git/objects/32/95ccd388867461930044c0aa5ce9b7d8ad542d and ./wordpress-3.4.2/.git/objects/32/95ccd388867461930044c0aa5ce9b7d8ad542d differ
Binary files ./wordpress-3.4.1/.git/objects/32/a5c987148d9b722281d916c4f935fb42ebd84c and ./wordpress-3.4.2/.git/objects/32/a5c987148d9b722281d916c4f935fb42ebd84c differ
Binary files ./wordpress-3.4.1/.git/objects/33/1cc90b0e4e4d0c1e01ead2f9bab6aed61d2e06 and ./wordpress-3.4.2/.git/objects/33/1cc90b0e4e4d0c1e01ead2f9bab6aed61d2e06 differ
Binary files ./wordpress-3.4.1/.git/objects/33/6fe893e612b868de4fe894bd24a957f48dd5e8 and ./wordpress-3.4.2/.git/objects/33/6fe893e612b868de4fe894bd24a957f48dd5e8 differ
Binary files ./wordpress-3.4.1/.git/objects/33/7cc9123dfd4bd85827d0af9e0e1b74e0e01d26 and ./wordpress-3.4.2/.git/objects/33/7cc9123dfd4bd85827d0af9e0e1b74e0e01d26 differ
Binary files ./wordpress-3.4.1/.git/objects/33/897b60994930b9b7216162d5dd3436deb45a13 and ./wordpress-3.4.2/.git/objects/33/897b60994930b9b7216162d5dd3436deb45a13 differ
Binary files ./wordpress-3.4.1/.git/objects/33/9e6e5296ce22f6aebe978f15c847b12d5c5234 and ./wordpress-3.4.2/.git/objects/33/9e6e5296ce22f6aebe978f15c847b12d5c5234 differ
Binary files ./wordpress-3.4.1/.git/objects/33/a0c7157f4b6a90522681bb03da6738bef1598c and ./wordpress-3.4.2/.git/objects/33/a0c7157f4b6a90522681bb03da6738bef1598c differ
Binary files ./wordpress-3.4.1/.git/objects/33/d19d8547050470dfea18c81469816b60807abf and ./wordpress-3.4.2/.git/objects/33/d19d8547050470dfea18c81469816b60807abf differ
Binary files ./wordpress-3.4.1/.git/objects/33/fb7175a04f7600a70d10eaa6472c45fed8fd80 and ./wordpress-3.4.2/.git/objects/33/fb7175a04f7600a70d10eaa6472c45fed8fd80 differ
Binary files ./wordpress-3.4.1/.git/objects/34/2b7f64e9b50ae91894ce04917a228fb25cb5fd and ./wordpress-3.4.2/.git/objects/34/2b7f64e9b50ae91894ce04917a228fb25cb5fd differ
Binary files ./wordpress-3.4.1/.git/objects/34/573478ebc7b6c277df243bfc450eb0c8039b3d and ./wordpress-3.4.2/.git/objects/34/573478ebc7b6c277df243bfc450eb0c8039b3d differ
Binary files ./wordpress-3.4.1/.git/objects/34/cb31ab6271981eb17fc64a9e883b02e70c7fe1 and ./wordpress-3.4.2/.git/objects/34/cb31ab6271981eb17fc64a9e883b02e70c7fe1 differ
Binary files ./wordpress-3.4.1/.git/objects/35/3711ca3958f2ff7b8bd11e9c918a2b3127b0b3 and ./wordpress-3.4.2/.git/objects/35/3711ca3958f2ff7b8bd11e9c918a2b3127b0b3 differ
Binary files ./wordpress-3.4.1/.git/objects/35/4070bb457b3786368a51b065ae75cf27297b09 and ./wordpress-3.4.2/.git/objects/35/4070bb457b3786368a51b065ae75cf27297b09 differ
Binary files ./wordpress-3.4.1/.git/objects/35/70104077a3b3585f11403c8d4c3fc9351f35d2 and ./wordpress-3.4.2/.git/objects/35/70104077a3b3585f11403c8d4c3fc9351f35d2 differ
Binary files ./wordpress-3.4.1/.git/objects/35/9b001c6c50b15281b6455950597c486451a58e and ./wordpress-3.4.2/.git/objects/35/9b001c6c50b15281b6455950597c486451a58e differ
Binary files ./wordpress-3.4.1/.git/objects/36/0bb91adb8273b55b96eda3639b80e1f996cae1 and ./wordpress-3.4.2/.git/objects/36/0bb91adb8273b55b96eda3639b80e1f996cae1 differ
Binary files ./wordpress-3.4.1/.git/objects/36/1a8de60027d2224aeeeae3731b78b7bbb089bc and ./wordpress-3.4.2/.git/objects/36/1a8de60027d2224aeeeae3731b78b7bbb089bc differ
Binary files ./wordpress-3.4.1/.git/objects/36/31e786fc8e76bc5beb13bab222e6c74b004d8e and ./wordpress-3.4.2/.git/objects/36/31e786fc8e76bc5beb13bab222e6c74b004d8e differ
Binary files ./wordpress-3.4.1/.git/objects/36/44fdde2b15dd2288171b733bf6b42b5d652519 and ./wordpress-3.4.2/.git/objects/36/44fdde2b15dd2288171b733bf6b42b5d652519 differ
Binary files ./wordpress-3.4.1/.git/objects/36/4573a3a275d2a1d46d5359821d8d27c0169b87 and ./wordpress-3.4.2/.git/objects/36/4573a3a275d2a1d46d5359821d8d27c0169b87 differ
Binary files ./wordpress-3.4.1/.git/objects/36/79011ebaea3da32f0146561570f86ef355e45b and ./wordpress-3.4.2/.git/objects/36/79011ebaea3da32f0146561570f86ef355e45b differ
Binary files ./wordpress-3.4.1/.git/objects/36/848b08f10a49beb201d311c657cdc8c1d750d2 and ./wordpress-3.4.2/.git/objects/36/848b08f10a49beb201d311c657cdc8c1d750d2 differ
Binary files ./wordpress-3.4.1/.git/objects/36/eb86ccb5601b521180980f5ce24cc4a26efcbb and ./wordpress-3.4.2/.git/objects/36/eb86ccb5601b521180980f5ce24cc4a26efcbb differ
Binary files ./wordpress-3.4.1/.git/objects/37/13f18b401103b8307b5642d273897587787293 and ./wordpress-3.4.2/.git/objects/37/13f18b401103b8307b5642d273897587787293 differ
Binary files ./wordpress-3.4.1/.git/objects/37/1a28438d3d0e9319629d5c7301d213e3feae8b and ./wordpress-3.4.2/.git/objects/37/1a28438d3d0e9319629d5c7301d213e3feae8b differ
Binary files ./wordpress-3.4.1/.git/objects/37/4ba150fb238d6a33605bb26e86d4449625a46c and ./wordpress-3.4.2/.git/objects/37/4ba150fb238d6a33605bb26e86d4449625a46c differ
Binary files ./wordpress-3.4.1/.git/objects/37/59c90c19a3ee280cd9e54add1d51720ff59d3d and ./wordpress-3.4.2/.git/objects/37/59c90c19a3ee280cd9e54add1d51720ff59d3d differ
Binary files ./wordpress-3.4.1/.git/objects/37/b4320bd9faaafecacd72709810bff010f4e9e4 and ./wordpress-3.4.2/.git/objects/37/b4320bd9faaafecacd72709810bff010f4e9e4 differ
Binary files ./wordpress-3.4.1/.git/objects/37/bd43a07d924d45ac1579b6db163c0ba68fddfe and ./wordpress-3.4.2/.git/objects/37/bd43a07d924d45ac1579b6db163c0ba68fddfe differ
Binary files ./wordpress-3.4.1/.git/objects/37/d73f19b220eb13c49f9047d66ce306137647af and ./wordpress-3.4.2/.git/objects/37/d73f19b220eb13c49f9047d66ce306137647af differ
Binary files ./wordpress-3.4.1/.git/objects/38/069d1974b794bd79235a45d86814cff98aae0c and ./wordpress-3.4.2/.git/objects/38/069d1974b794bd79235a45d86814cff98aae0c differ
Binary files ./wordpress-3.4.1/.git/objects/38/14c86ee06bfa230b0db11d4af554b2c423c231 and ./wordpress-3.4.2/.git/objects/38/14c86ee06bfa230b0db11d4af554b2c423c231 differ
Binary files ./wordpress-3.4.1/.git/objects/38/1db83c50c993bf657264d38f4f81cd44fd176b and ./wordpress-3.4.2/.git/objects/38/1db83c50c993bf657264d38f4f81cd44fd176b differ
Binary files ./wordpress-3.4.1/.git/objects/38/2ffea049a6e194a29c637df982c35664500eee and ./wordpress-3.4.2/.git/objects/38/2ffea049a6e194a29c637df982c35664500eee differ
Binary files ./wordpress-3.4.1/.git/objects/38/3487458a9bd63b0f10fe323967f87fb50546fd and ./wordpress-3.4.2/.git/objects/38/3487458a9bd63b0f10fe323967f87fb50546fd differ
Binary files ./wordpress-3.4.1/.git/objects/38/8486517fa8da13ebd150e8f65d5096c3e10c3a and ./wordpress-3.4.2/.git/objects/38/8486517fa8da13ebd150e8f65d5096c3e10c3a differ
Binary files ./wordpress-3.4.1/.git/objects/38/99f0ecded006fa59ce2bcc301d2a97ab6ab09a and ./wordpress-3.4.2/.git/objects/38/99f0ecded006fa59ce2bcc301d2a97ab6ab09a differ
Binary files ./wordpress-3.4.1/.git/objects/38/daa06627b092cf24dc9ce5da4538c69c08a227 and ./wordpress-3.4.2/.git/objects/38/daa06627b092cf24dc9ce5da4538c69c08a227 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/38/e4f7b481999af4af717af529b79e5574953a05 ./wordpress-3.4.2/.git/objects/38/e4f7b481999af4af717af529b79e5574953a05
*** ./wordpress-3.4.1/.git/objects/38/e4f7b481999af4af717af529b79e5574953a05 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/38/e4f7b481999af4af717af529b79e5574953a05 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ xRQK0ap͓L|>1ͭKS߽k;'rwwߗܺ\\^~.pdo,BɎ^{OpR jW:VY-HCͲJ`V^^kTO.4Vc T]i8
+ @*?hkm*kAmQ[Q$: {dzg"!svckxe2vY&MwP3"IGmE4E8KQ/GνvC
+ ߁deC9b;¥(|+ᕆyv(uC"/q܄0J<%j3%rJ%ߧN̻Qޥ9.:
+ ss4gU\z%=!sm-x2nyT)^?hcp/3MX'L<2aB~hL
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/39/254c8dcf14cab2d7149dd0997ba1b361ea0172 and ./wordpress-3.4.2/.git/objects/39/254c8dcf14cab2d7149dd0997ba1b361ea0172 differ
Binary files ./wordpress-3.4.1/.git/objects/39/29bbb51dd950802bb9bf12a397d1ac1e140610 and ./wordpress-3.4.2/.git/objects/39/29bbb51dd950802bb9bf12a397d1ac1e140610 differ
Binary files ./wordpress-3.4.1/.git/objects/39/2bb571d830c07cddb9aafb6b0b43b0f2f2ad62 and ./wordpress-3.4.2/.git/objects/39/2bb571d830c07cddb9aafb6b0b43b0f2f2ad62 differ
Binary files ./wordpress-3.4.1/.git/objects/39/2bd57cff5d4fea019ab4562f0d3a350959c531 and ./wordpress-3.4.2/.git/objects/39/2bd57cff5d4fea019ab4562f0d3a350959c531 differ
Binary files ./wordpress-3.4.1/.git/objects/39/54c3055e38e35992cd126f29b4bdc19dd782dd and ./wordpress-3.4.2/.git/objects/39/54c3055e38e35992cd126f29b4bdc19dd782dd differ
Binary files ./wordpress-3.4.1/.git/objects/3a/0daf1fd63a7181e70c37c039d172d97a314b11 and ./wordpress-3.4.2/.git/objects/3a/0daf1fd63a7181e70c37c039d172d97a314b11 differ
Binary files ./wordpress-3.4.1/.git/objects/3a/25db4afb64883ef7062de69a552eb7c7642560 and ./wordpress-3.4.2/.git/objects/3a/25db4afb64883ef7062de69a552eb7c7642560 differ
Binary files ./wordpress-3.4.1/.git/objects/3a/43135ded872846746d03fdb526f785df14758f and ./wordpress-3.4.2/.git/objects/3a/43135ded872846746d03fdb526f785df14758f differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/3b/198bb203d1c19a365d9ff5954eeed53c0a9a1d ./wordpress-3.4.2/.git/objects/3b/198bb203d1c19a365d9ff5954eeed53c0a9a1d
*** ./wordpress-3.4.1/.git/objects/3b/198bb203d1c19a365d9ff5954eeed53c0a9a1d 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/3b/198bb203d1c19a365d9ff5954eeed53c0a9a1d 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,6 ----
+ xmSMo05!nӀ]-t,T4In?mS&^=l߯zYdQze.xBfюY쀶G
+ eֆsM3ʘEA l+JTYv@:4-l;
+ [%Mys0J]~l{X^:Zn<2!,a`~q'0ŗp4
+ 'vn]^҅%Z[n %Yl;U*հM%|SG J頄D,p
+ B)8ů&5IS+XGw<ObCJ\2!璬L{R֑jsU~j43xy"$QvjIH:
+ WXt4=]ѫQv^빖aseN~+ℜӿ,isVKFxދs`Q䚀.aO"Qk#s@T:f5ܡᬄNȿD*Ҩ}Nao#>y-x_ʳq(+."!4SsDJBKȄ
uX}WIMOzjV
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/3b/22896ca01029bfc07a4810e4471e8aa71af08b and ./wordpress-3.4.2/.git/objects/3b/22896ca01029bfc07a4810e4471e8aa71af08b differ
Binary files ./wordpress-3.4.1/.git/objects/3b/7e1566edc458bc2f225e77feb6e18fb0010a87 and ./wordpress-3.4.2/.git/objects/3b/7e1566edc458bc2f225e77feb6e18fb0010a87 differ
Binary files ./wordpress-3.4.1/.git/objects/3b/83433aba071e1592d770a8b8f614ccbc04e053 and ./wordpress-3.4.2/.git/objects/3b/83433aba071e1592d770a8b8f614ccbc04e053 differ
Binary files ./wordpress-3.4.1/.git/objects/3b/9b8af34ff9141d9498c77e879a1ca3a10b26b2 and ./wordpress-3.4.2/.git/objects/3b/9b8af34ff9141d9498c77e879a1ca3a10b26b2 differ
Binary files ./wordpress-3.4.1/.git/objects/3b/a7b4c7ea8336d6f660334a01d868a8c2f54b88 and ./wordpress-3.4.2/.git/objects/3b/a7b4c7ea8336d6f660334a01d868a8c2f54b88 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/3b/aea8126c2f80a7f2a590ea3f092e01a3cd11aa ./wordpress-3.4.2/.git/objects/3b/aea8126c2f80a7f2a590ea3f092e01a3cd11aa
*** ./wordpress-3.4.1/.git/objects/3b/aea8126c2f80a7f2a590ea3f092e01a3cd11aa 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/3b/aea8126c2f80a7f2a590ea3f092e01a3cd11aa 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,5 ----
+ x}RM0!H$i@Pcēvvɿgl.Byޛinn3:5#G.}&ΰ3:X~>QUEUaᛶޢs1
+ QtD:
+ ¶Pgi@.We|wZy&-^{VKJxJ1rC's<|6Rڗ}Rհ&R[;^x!z'\Bǂ
+ yTDM=ly<3
+ ׄ/>tЎ<#XG%
["ܣqnzRTh@p=՞h(&버(آyJxlHX3d֝NguV>Z_XFDwf$GXт00R q")B+Ibx~e*"3D*ApךF&~W
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/3b/cbc04f6a8f5ab9d153bb721ed4c19cb1ed5221 and ./wordpress-3.4.2/.git/objects/3b/cbc04f6a8f5ab9d153bb721ed4c19cb1ed5221 differ
Binary files ./wordpress-3.4.1/.git/objects/3b/ebcf1e00a0858103e719c8fe1192f8e7e10562 and ./wordpress-3.4.2/.git/objects/3b/ebcf1e00a0858103e719c8fe1192f8e7e10562 differ
Binary files ./wordpress-3.4.1/.git/objects/3b/fea5741fa3a241707b3487e493c754870b0eed and ./wordpress-3.4.2/.git/objects/3b/fea5741fa3a241707b3487e493c754870b0eed differ
Binary files ./wordpress-3.4.1/.git/objects/3c/18578d64929480a6be6f36bb4a46e7dbcc039c and ./wordpress-3.4.2/.git/objects/3c/18578d64929480a6be6f36bb4a46e7dbcc039c differ
Binary files ./wordpress-3.4.1/.git/objects/3c/2f66aa62d9b7be7bcaf25170613475757638da and ./wordpress-3.4.2/.git/objects/3c/2f66aa62d9b7be7bcaf25170613475757638da differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/3c/6424d86e84d47e9ef0de3d6d84973e05ca42c8 ./wordpress-3.4.2/.git/objects/3c/6424d86e84d47e9ef0de3d6d84973e05ca42c8
*** ./wordpress-3.4.1/.git/objects/3c/6424d86e84d47e9ef0de3d6d84973e05ca42c8 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/3c/6424d86e84d47e9ef0de3d6d84973e05ca42c8 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,6 ----
+ xUn1uC6MBR"$(T̮1+ۋ*>dfJ[^zxrΜ3ΏGoIml`ҏBycGuՔJͻ?lwV{;RL
+ okRXh|])עc\)Bankʉ7{E=;p^;/uਪX餽EZɰ"ԅ4Hkᦕ!yNa3KcץCfVLf/H+KKdR8
+ wPjNp,
+ i9"VFpS8VK{d+ WF3ى]:IJs؇O:ҟ|£~ݢ xqgx$cc'E
ҡrƐ=݈AdYpfӐnR3ˑ4F~89"|A3,8+"ACX<&%gуyA(t;tQ(U+"cQ}&=G Dא7ids5&8M՝
+ :z$dDRKTL)o7>e3z0L-wM]Alzrekq,Z^K556[7H,xl'yQUZ z!-fx
姸cU]^'q:D4ޯVa6Ti6`ԑi39/Nfv|}a+ZZw1
+ Ǐ7}rZwXY>Š):d|:vxy^[
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/3c/bf32c4f2fcff1ab7b7463dd20b732fa7213d62 and ./wordpress-3.4.2/.git/objects/3c/bf32c4f2fcff1ab7b7463dd20b732fa7213d62 differ
Binary files ./wordpress-3.4.1/.git/objects/3c/ccb7b46759ecda9cbcf3bf4171a1ebb2a13b03 and ./wordpress-3.4.2/.git/objects/3c/ccb7b46759ecda9cbcf3bf4171a1ebb2a13b03 differ
Binary files ./wordpress-3.4.1/.git/objects/3d/04407ade0b08a86c1497c962faa8d5b23e1cdf and ./wordpress-3.4.2/.git/objects/3d/04407ade0b08a86c1497c962faa8d5b23e1cdf differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/3d/36a2cc59f31d78cf757e58e244e281da501f27 ./wordpress-3.4.2/.git/objects/3d/36a2cc59f31d78cf757e58e244e281da501f27
*** ./wordpress-3.4.1/.git/objects/3d/36a2cc59f31d78cf757e58e244e281da501f27 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/3d/36a2cc59f31d78cf757e58e244e281da501f27 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,4 ----
+ x=10Es
+ o-
+ "Ւ'Q9>Flnrxw/P%MEAY
+ u$gk>{ݏz@96W4V@GF6y`|&bT.eMmb4qvQ^&y()*\ g2aW
+ δf3S:ћii˧4vi4Şc<T#$/~睕A$o&tSMǍㆷ5xHvr4,8oVͽ^D\%:h\ɑnU"fweB
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/42/82004fb747f7e57dc1b617b213d8bafbb265e7 and ./wordpress-3.4.2/.git/objects/42/82004fb747f7e57dc1b617b213d8bafbb265e7 differ
Binary files ./wordpress-3.4.1/.git/objects/42/85dec91749e13ea3df5809cc437c446e2f8e53 and ./wordpress-3.4.2/.git/objects/42/85dec91749e13ea3df5809cc437c446e2f8e53 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/42/a82d112c5d568031498bb94d978777225ab35f ./wordpress-3.4.2/.git/objects/42/a82d112c5d568031498bb94d978777225ab35f
*** ./wordpress-3.4.1/.git/objects/42/a82d112c5d568031498bb94d978777225ab35f 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/42/a82d112c5d568031498bb94d978777225ab35f 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,4 ----
+ x}Tmo6Oq! g@xEP$
:w/h6E%ǐwԛl=w@`xO?MC+Ƥ*y6 }+1 |G(E&aRhKQ'x$>Db93hSUlٚZJjidžnI5H%ݑJn$}Repr
+ wiFTMv4j_ؒJ!˅ȓ:-'4菏RG ,嘶dıA?SqXFt=*"[-92T:sHRA!!*L9ⷎ8SʍQ]sE_rk}euN
+ vŷ'@vڱ$PGɶ^$a "-MM5(4~d
+ ^Rrsp!Kp``L7],_5SBomL6HcDƊ4pw2ҧׅR
N_r>'m6n}n`]0#/DI=--} q;qcı%ޚx ]nv>.m.
.y7b,>q]Xk4P)֖X)skS/N>IX2c@"fÌ^|M", O?po`Z:LyÞws=WP(Voj
U);>/ll2ݙg)B܊$\GPlmC#&ATBsKg^-|
5}Xyݕt=Rd9|ow&SNC hΒw1[r;݇}IC0YhO
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/42/af070ae9803e9a3a941695c5698d4bafed7646 and ./wordpress-3.4.2/.git/objects/42/af070ae9803e9a3a941695c5698d4bafed7646 differ
Binary files ./wordpress-3.4.1/.git/objects/42/c1fbfa2361d7089fa433a27b7783a1519eac7d and ./wordpress-3.4.2/.git/objects/42/c1fbfa2361d7089fa433a27b7783a1519eac7d differ
Binary files ./wordpress-3.4.1/.git/objects/42/f08b79942d32f9d7e693b6952c2d935e352774 and ./wordpress-3.4.2/.git/objects/42/f08b79942d32f9d7e693b6952c2d935e352774 differ
Binary files ./wordpress-3.4.1/.git/objects/43/523ca6980d58a8d8f517fae6157700b8e710d2 and ./wordpress-3.4.2/.git/objects/43/523ca6980d58a8d8f517fae6157700b8e710d2 differ
Binary files ./wordpress-3.4.1/.git/objects/43/7ae61a629ebed61165dcde93fb87b09edaf382 and ./wordpress-3.4.2/.git/objects/43/7ae61a629ebed61165dcde93fb87b09edaf382 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/43/9fcdb81e19b63837a6ae2bd356cb56423f656b ./wordpress-3.4.2/.git/objects/43/9fcdb81e19b63837a6ae2bd356cb56423f656b
*** ./wordpress-3.4.1/.git/objects/43/9fcdb81e19b63837a6ae2bd356cb56423f656b 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/43/9fcdb81e19b63837a6ae2bd356cb56423f656b 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,6 ----
+ xMo@{ſbz2D6VjIQ[*Gk`~ջnRU]C@V
+ r/y=;_q)M ..nl6>;f
GLJ0+[SE+5h,f݈Lg˪-[?1w]Steb}xWB#緋b2Ϯoa.J]Kz
ê6
+ X{jߚfwwD13Bpẃ
+ k`ζt1@Q!y&
:qp Y#}s J6677\'UFGY/XB@鸚\+0g5BI$):)Cr>ۥ1[K
+ 5O.o{L.n\@!9)|1JePyC:0IMg*@%I"P
+ suVPP)kИWu B6kzUFLJøYIjvpL.%4htΔ߁R:dwmX2i%s4%tRɐƚ${^?mr_^p$_iG~:r]?[?DLBcFڪIFQ 9-fkl;q?=+Z^w/`
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/43/a735f22c81d6d7d99c1ba9f034f38bfdd1a92b and ./wordpress-3.4.2/.git/objects/43/a735f22c81d6d7d99c1ba9f034f38bfdd1a92b differ
Binary files ./wordpress-3.4.1/.git/objects/43/dbe297641164baab8778c5f57561de3595114b and ./wordpress-3.4.2/.git/objects/43/dbe297641164baab8778c5f57561de3595114b differ
Binary files ./wordpress-3.4.1/.git/objects/43/e82f8a6bfe97d79e91d2e2644f9665b68773eb and ./wordpress-3.4.2/.git/objects/43/e82f8a6bfe97d79e91d2e2644f9665b68773eb differ
Binary files ./wordpress-3.4.1/.git/objects/43/e9ac409938e6fa19d813a445ff5d707d416d69 and ./wordpress-3.4.2/.git/objects/43/e9ac409938e6fa19d813a445ff5d707d416d69 differ
Binary files ./wordpress-3.4.1/.git/objects/43/f9081de78e2fd9b3c1123320dcc951e3391584 and ./wordpress-3.4.2/.git/objects/43/f9081de78e2fd9b3c1123320dcc951e3391584 differ
Binary files ./wordpress-3.4.1/.git/objects/44/9bb175fd521779b29de556d2f04efc7a94afb3 and ./wordpress-3.4.2/.git/objects/44/9bb175fd521779b29de556d2f04efc7a94afb3 differ
Binary files ./wordpress-3.4.1/.git/objects/44/9f0e25f95cf2c28bdabb19aec700972d1862fc and ./wordpress-3.4.2/.git/objects/44/9f0e25f95cf2c28bdabb19aec700972d1862fc differ
Binary files ./wordpress-3.4.1/.git/objects/44/b2aa57e9bd5291018af026ca4ae14dbfcb1c7b and ./wordpress-3.4.2/.git/objects/44/b2aa57e9bd5291018af026ca4ae14dbfcb1c7b differ
Binary files ./wordpress-3.4.1/.git/objects/44/d8294ac5e81e2d77a3d7211564db7f4fde3b16 and ./wordpress-3.4.2/.git/objects/44/d8294ac5e81e2d77a3d7211564db7f4fde3b16 differ
Binary files ./wordpress-3.4.1/.git/objects/44/d96a0426f50503b73355d834a5ef70b72c8c7a and ./wordpress-3.4.2/.git/objects/44/d96a0426f50503b73355d834a5ef70b72c8c7a differ
Binary files ./wordpress-3.4.1/.git/objects/45/3394882bade1113f4f9761256ffd799f7a0359 and ./wordpress-3.4.2/.git/objects/45/3394882bade1113f4f9761256ffd799f7a0359 differ
Binary files ./wordpress-3.4.1/.git/objects/45/7f199c3db445e2323585de93a0313e75b6d1e0 and ./wordpress-3.4.2/.git/objects/45/7f199c3db445e2323585de93a0313e75b6d1e0 differ
Binary files ./wordpress-3.4.1/.git/objects/45/89cb4dc6a7557359e523877b28ebf87d5251d4 and ./wordpress-3.4.2/.git/objects/45/89cb4dc6a7557359e523877b28ebf87d5251d4 differ
Binary files ./wordpress-3.4.1/.git/objects/45/8ab30b6a07beefe0153c3a6f3da20e4030826d and ./wordpress-3.4.2/.git/objects/45/8ab30b6a07beefe0153c3a6f3da20e4030826d differ
Binary files ./wordpress-3.4.1/.git/objects/45/903972563e9532515702d63020ca8a825885da and ./wordpress-3.4.2/.git/objects/45/903972563e9532515702d63020ca8a825885da differ
Binary files ./wordpress-3.4.1/.git/objects/45/b6007357ca19dd1c135d5d6044177b26ef47c2 and ./wordpress-3.4.2/.git/objects/45/b6007357ca19dd1c135d5d6044177b26ef47c2 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/45/c2358a48141603c27d77992228f0b68f1ed807 ./wordpress-3.4.2/.git/objects/45/c2358a48141603c27d77992228f0b68f1ed807
*** ./wordpress-3.4.1/.git/objects/45/c2358a48141603c27d77992228f0b68f1ed807 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/45/c2358a48141603c27d77992228f0b68f1ed807 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ x}QM OqÂBiJ{aWsժ(G',{&= 13]]=|~xctk=DmɾSU+CxõFK^hc>htuiRkuU/Ptɭ/nΎ^Ze(
+ ˨@c"Lيl>Ο繠tΉobNE8U/MXzoE;S>IJJZ㕪n':gZ!Rl@0#^;}o )VKKt=%ef#||τ+tti
@xTm]X_H4^`2Tz?dwDG~<9+Ld
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/45/c676b4a934687d096676d6ecbcd5e0eadecbd5 and ./wordpress-3.4.2/.git/objects/45/c676b4a934687d096676d6ecbcd5e0eadecbd5 differ
Binary files ./wordpress-3.4.1/.git/objects/45/d3ef6623bbe1ab2c1a7a30cbe26bcdcca86680 and ./wordpress-3.4.2/.git/objects/45/d3ef6623bbe1ab2c1a7a30cbe26bcdcca86680 differ
Binary files ./wordpress-3.4.1/.git/objects/45/ddd2f6c856506599e377ed381dbe5ba976acb9 and ./wordpress-3.4.2/.git/objects/45/ddd2f6c856506599e377ed381dbe5ba976acb9 differ
Binary files ./wordpress-3.4.1/.git/objects/46/42af13ad98ceb9e0dcef481b5e2722e9abebbb and ./wordpress-3.4.2/.git/objects/46/42af13ad98ceb9e0dcef481b5e2722e9abebbb differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/46/4ab8c4654eeac5b06cd5773b17126dc53c120b ./wordpress-3.4.2/.git/objects/46/4ab8c4654eeac5b06cd5773b17126dc53c120b
*** ./wordpress-3.4.1/.git/objects/46/4ab8c4654eeac5b06cd5773b17126dc53c120b 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/46/4ab8c4654eeac5b06cd5773b17126dc53c120b 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ x}Rn!_)67NMΧύ{,֯6{M[[mHHU|C^N {&A[Wuuf8ީ-Y/Zh)'me1>`ݺlu"ttѷPâ'-1l!:҂Lݬ&uz.vD+4bC5~:&ʝb52kR١<~|^&ɮ -L&;7kpB.KUYGiwK;45[6>
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/46/d95b97849ce4cb08f3256f936a9018e3f4d923 and ./wordpress-3.4.2/.git/objects/46/d95b97849ce4cb08f3256f936a9018e3f4d923 differ
Binary files ./wordpress-3.4.1/.git/objects/46/dac85bb9137e6c24f1de1d7af83eee0bf5e0e6 and ./wordpress-3.4.2/.git/objects/46/dac85bb9137e6c24f1de1d7af83eee0bf5e0e6 differ
Binary files ./wordpress-3.4.1/.git/objects/46/e3e16b590ef69a3ac96f01f4e6303f75887e93 and ./wordpress-3.4.2/.git/objects/46/e3e16b590ef69a3ac96f01f4e6303f75887e93 differ
Binary files ./wordpress-3.4.1/.git/objects/47/0ef2a213bc89319e5ff7d1c6c757fb4e91def7 and ./wordpress-3.4.2/.git/objects/47/0ef2a213bc89319e5ff7d1c6c757fb4e91def7 differ
Binary files ./wordpress-3.4.1/.git/objects/47/175243585e68a1e2df3bf737d50f7cf62b6490 and ./wordpress-3.4.2/.git/objects/47/175243585e68a1e2df3bf737d50f7cf62b6490 differ
Binary files ./wordpress-3.4.1/.git/objects/47/2cb133d6bf3ae821c06972059004f496629c24 and ./wordpress-3.4.2/.git/objects/47/2cb133d6bf3ae821c06972059004f496629c24 differ
Binary files ./wordpress-3.4.1/.git/objects/47/76a52f81bcb82c38db24fe23528655317f75cb and ./wordpress-3.4.2/.git/objects/47/76a52f81bcb82c38db24fe23528655317f75cb differ
Binary files ./wordpress-3.4.1/.git/objects/47/dd4e5bd88e8238aec83f18f863ac6e231ece24 and ./wordpress-3.4.2/.git/objects/47/dd4e5bd88e8238aec83f18f863ac6e231ece24 differ
Binary files ./wordpress-3.4.1/.git/objects/48/744fab7c46dd89f3c30c68018e467939c9be5e and ./wordpress-3.4.2/.git/objects/48/744fab7c46dd89f3c30c68018e467939c9be5e differ
Binary files ./wordpress-3.4.1/.git/objects/48/8e4fc6023298aca21a813e5792fa14ea8dcc50 and ./wordpress-3.4.2/.git/objects/48/8e4fc6023298aca21a813e5792fa14ea8dcc50 differ
Binary files ./wordpress-3.4.1/.git/objects/48/bb1a3182a7da35f9b7342f884e17de437c5f5d and ./wordpress-3.4.2/.git/objects/48/bb1a3182a7da35f9b7342f884e17de437c5f5d differ
Binary files ./wordpress-3.4.1/.git/objects/48/d15995a9810b92ddc6fc446c49950b9e917544 and ./wordpress-3.4.2/.git/objects/48/d15995a9810b92ddc6fc446c49950b9e917544 differ
Binary files ./wordpress-3.4.1/.git/objects/48/e8f7ef1d8f4f452f32aa51fa48b14b7b98b049 and ./wordpress-3.4.2/.git/objects/48/e8f7ef1d8f4f452f32aa51fa48b14b7b98b049 differ
Binary files ./wordpress-3.4.1/.git/objects/49/33202819949ec3c9c0f38a529c3be7a05459da and ./wordpress-3.4.2/.git/objects/49/33202819949ec3c9c0f38a529c3be7a05459da differ
Binary files ./wordpress-3.4.1/.git/objects/49/3a6aa3fbd0f7f4e76fffa791425a0baca775cc and ./wordpress-3.4.2/.git/objects/49/3a6aa3fbd0f7f4e76fffa791425a0baca775cc differ
Binary files ./wordpress-3.4.1/.git/objects/49/406f61c7d03597b94ccf80e86cc6451dfbb316 and ./wordpress-3.4.2/.git/objects/49/406f61c7d03597b94ccf80e86cc6451dfbb316 differ
Binary files ./wordpress-3.4.1/.git/objects/49/553746f3e2d160e1c53883e29850e922625f0d and ./wordpress-3.4.2/.git/objects/49/553746f3e2d160e1c53883e29850e922625f0d differ
Binary files ./wordpress-3.4.1/.git/objects/49/7307a85ad32e00b67c5f27d6f3b46ac566d89b and ./wordpress-3.4.2/.git/objects/49/7307a85ad32e00b67c5f27d6f3b46ac566d89b differ
Binary files ./wordpress-3.4.1/.git/objects/49/81ec60d43006dab5c2126e7bac570aeadeb9c6 and ./wordpress-3.4.2/.git/objects/49/81ec60d43006dab5c2126e7bac570aeadeb9c6 differ
Binary files ./wordpress-3.4.1/.git/objects/49/b94aedb468c6a60b884773b4ca9661b2774d5c and ./wordpress-3.4.2/.git/objects/49/b94aedb468c6a60b884773b4ca9661b2774d5c differ
Binary files ./wordpress-3.4.1/.git/objects/49/b94c7799537bc7b43cfda7b6069463ba145ccf and ./wordpress-3.4.2/.git/objects/49/b94c7799537bc7b43cfda7b6069463ba145ccf differ
Binary files ./wordpress-3.4.1/.git/objects/4a/09a2d1b7f7f0411789f796db64e28d92f295c2 and ./wordpress-3.4.2/.git/objects/4a/09a2d1b7f7f0411789f796db64e28d92f295c2 differ
Binary files ./wordpress-3.4.1/.git/objects/4a/15056adb87263648da2747b3a32ea7671034ce and ./wordpress-3.4.2/.git/objects/4a/15056adb87263648da2747b3a32ea7671034ce differ
Binary files ./wordpress-3.4.1/.git/objects/4a/36c184f4c1069360223e7ae9e7dfbd2e15b3ab and ./wordpress-3.4.2/.git/objects/4a/36c184f4c1069360223e7ae9e7dfbd2e15b3ab differ
Binary files ./wordpress-3.4.1/.git/objects/4a/41080deb434397df97bb3fbdb1c8a7fd5720a4 and ./wordpress-3.4.2/.git/objects/4a/41080deb434397df97bb3fbdb1c8a7fd5720a4 differ
Binary files ./wordpress-3.4.1/.git/objects/4a/b956e04f3964480b4fbeab16a0120bd2bf4f29 and ./wordpress-3.4.2/.git/objects/4a/b956e04f3964480b4fbeab16a0120bd2bf4f29 differ
Binary files ./wordpress-3.4.1/.git/objects/4a/c29be4a3c7444ab6b15e6bda46293329c9b107 and ./wordpress-3.4.2/.git/objects/4a/c29be4a3c7444ab6b15e6bda46293329c9b107 differ
Binary files ./wordpress-3.4.1/.git/objects/4a/e317b8985b8c7190d591f15951ef11a9625657 and ./wordpress-3.4.2/.git/objects/4a/e317b8985b8c7190d591f15951ef11a9625657 differ
Binary files ./wordpress-3.4.1/.git/objects/4b/0eb2eeb3a7036e87d9e68f3b7b2aa711cba683 and ./wordpress-3.4.2/.git/objects/4b/0eb2eeb3a7036e87d9e68f3b7b2aa711cba683 differ
Binary files ./wordpress-3.4.1/.git/objects/4b/26eb0f620c106090c855a8baa02c2764c57da0 and ./wordpress-3.4.2/.git/objects/4b/26eb0f620c106090c855a8baa02c2764c57da0 differ
Binary files ./wordpress-3.4.1/.git/objects/4b/4788b53caab7186c3aa73a2b47cbc90f967a0e and ./wordpress-3.4.2/.git/objects/4b/4788b53caab7186c3aa73a2b47cbc90f967a0e differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/4b/4f622d95289adfe612c7e346297ea880952a6c ./wordpress-3.4.2/.git/objects/4b/4f622d95289adfe612c7e346297ea880952a6c
*** ./wordpress-3.4.1/.git/objects/4b/4f622d95289adfe612c7e346297ea880952a6c 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/4b/4f622d95289adfe612c7e346297ea880952a6c 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ xe
+ 0E]+f!DFE][AŅHIAm&恿oSBι{F$a:k2mMB74j>848Vm47VTOqGSwWe--ʵA~"ED!TuaIV>`OS
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/4b/9293b1d1307c9e4b5e53b4d12bc1cdc2589617 and ./wordpress-3.4.2/.git/objects/4b/9293b1d1307c9e4b5e53b4d12bc1cdc2589617 differ
Binary files ./wordpress-3.4.1/.git/objects/4b/99fa57b77c6060251bbe95ba292ea0b57c9631 and ./wordpress-3.4.2/.git/objects/4b/99fa57b77c6060251bbe95ba292ea0b57c9631 differ
Binary files ./wordpress-3.4.1/.git/objects/4b/d62c217f0824c018efc3749a1f783d960af001 and ./wordpress-3.4.2/.git/objects/4b/d62c217f0824c018efc3749a1f783d960af001 differ
Binary files ./wordpress-3.4.1/.git/objects/4b/e5cb22cd7a78e2cb83d30c42d6b09abb57ee3b and ./wordpress-3.4.2/.git/objects/4b/e5cb22cd7a78e2cb83d30c42d6b09abb57ee3b differ
Binary files ./wordpress-3.4.1/.git/objects/4b/e9c3faf40c1d50fd91bd409f059560a7515c04 and ./wordpress-3.4.2/.git/objects/4b/e9c3faf40c1d50fd91bd409f059560a7515c04 differ
Binary files ./wordpress-3.4.1/.git/objects/4b/ee9e1afdb0ff0eccdf070d4252dcc69a0e0fd4 and ./wordpress-3.4.2/.git/objects/4b/ee9e1afdb0ff0eccdf070d4252dcc69a0e0fd4 differ
Binary files ./wordpress-3.4.1/.git/objects/4b/f86435ff0de95b037a2c19863d41ff1fd07cfe and ./wordpress-3.4.2/.git/objects/4b/f86435ff0de95b037a2c19863d41ff1fd07cfe differ
Binary files ./wordpress-3.4.1/.git/objects/4c/7089513af2c6275d5efe08539c8af6971fc3f4 and ./wordpress-3.4.2/.git/objects/4c/7089513af2c6275d5efe08539c8af6971fc3f4 differ
Binary files ./wordpress-3.4.1/.git/objects/4c/7e0853b5d95022837b754c3fbf87668170cd66 and ./wordpress-3.4.2/.git/objects/4c/7e0853b5d95022837b754c3fbf87668170cd66 differ
Binary files ./wordpress-3.4.1/.git/objects/4c/e2f6ebea40117f29bebd66991499d0c3f95924 and ./wordpress-3.4.2/.git/objects/4c/e2f6ebea40117f29bebd66991499d0c3f95924 differ
Binary files ./wordpress-3.4.1/.git/objects/4c/faec1512055045d04d82788cb294512e8a7b57 and ./wordpress-3.4.2/.git/objects/4c/faec1512055045d04d82788cb294512e8a7b57 differ
Binary files ./wordpress-3.4.1/.git/objects/4d/4d8c487d365d6831a49100552121b423da2334 and ./wordpress-3.4.2/.git/objects/4d/4d8c487d365d6831a49100552121b423da2334 differ
Binary files ./wordpress-3.4.1/.git/objects/4d/63ca98103e7273001bab311fa45e08bf753bae and ./wordpress-3.4.2/.git/objects/4d/63ca98103e7273001bab311fa45e08bf753bae differ
Binary files ./wordpress-3.4.1/.git/objects/4d/73265c8f2fdc2cd8e3cebed93df446a1c5a0a4 and ./wordpress-3.4.2/.git/objects/4d/73265c8f2fdc2cd8e3cebed93df446a1c5a0a4 differ
Binary files ./wordpress-3.4.1/.git/objects/4d/81cabc5227087ca878ea64b0d9cff150c3cf8a and ./wordpress-3.4.2/.git/objects/4d/81cabc5227087ca878ea64b0d9cff150c3cf8a differ
Binary files ./wordpress-3.4.1/.git/objects/4d/9ffe272b0b5dd50a0a53e868fde1b32e7ac17c and ./wordpress-3.4.2/.git/objects/4d/9ffe272b0b5dd50a0a53e868fde1b32e7ac17c differ
Binary files ./wordpress-3.4.1/.git/objects/4e/4d9db273511c280d758d921e0b0ed609fe8794 and ./wordpress-3.4.2/.git/objects/4e/4d9db273511c280d758d921e0b0ed609fe8794 differ
Binary files ./wordpress-3.4.1/.git/objects/4e/50b9383312dc4c26c6bd95da098b911b664cc5 and ./wordpress-3.4.2/.git/objects/4e/50b9383312dc4c26c6bd95da098b911b664cc5 differ
Binary files ./wordpress-3.4.1/.git/objects/4e/5daabd4d2f2f07ed8a98e6d21ba7035b28b4ba and ./wordpress-3.4.2/.git/objects/4e/5daabd4d2f2f07ed8a98e6d21ba7035b28b4ba differ
Binary files ./wordpress-3.4.1/.git/objects/4e/6c07c7ee1691cab5336b2f356ff6a5f367f879 and ./wordpress-3.4.2/.git/objects/4e/6c07c7ee1691cab5336b2f356ff6a5f367f879 differ
Binary files ./wordpress-3.4.1/.git/objects/4e/cb16d6fc50541eacf456c0d3c49236c9f72a5e and ./wordpress-3.4.2/.git/objects/4e/cb16d6fc50541eacf456c0d3c49236c9f72a5e differ
Binary files ./wordpress-3.4.1/.git/objects/4f/311567ed0bde877c5a1291a5853fd84b3fe951 and ./wordpress-3.4.2/.git/objects/4f/311567ed0bde877c5a1291a5853fd84b3fe951 differ
Binary files ./wordpress-3.4.1/.git/objects/4f/40f96a61c2892ab173eca57cb3ab602be169aa and ./wordpress-3.4.2/.git/objects/4f/40f96a61c2892ab173eca57cb3ab602be169aa differ
Binary files ./wordpress-3.4.1/.git/objects/4f/8bc3582593ddb8c5a0b43e6731407f0adb4c38 and ./wordpress-3.4.2/.git/objects/4f/8bc3582593ddb8c5a0b43e6731407f0adb4c38 differ
Binary files ./wordpress-3.4.1/.git/objects/4f/8f8d3adf5d99fe42b18fbb836937a6b8569ad6 and ./wordpress-3.4.2/.git/objects/4f/8f8d3adf5d99fe42b18fbb836937a6b8569ad6 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/4f/b1c40ae8e6b576b4d5116ad018e75c250e1edc ./wordpress-3.4.2/.git/objects/4f/b1c40ae8e6b576b4d5116ad018e75c250e1edc
*** ./wordpress-3.4.1/.git/objects/4f/b1c40ae8e6b576b4d5116ad018e75c250e1edc 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/4f/b1c40ae8e6b576b4d5116ad018e75c250e1edc 2012-09-10 14:16:45.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ x+)JMU0`040031QK+(`ԾZ?-aVG
Ur
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/4f/d9377c3ce1c8ba819711493aa99b5e59804cd6 and ./wordpress-3.4.2/.git/objects/4f/d9377c3ce1c8ba819711493aa99b5e59804cd6 differ
Binary files ./wordpress-3.4.1/.git/objects/4f/df2064c79441181fb4580f1d04339562ce2a37 and ./wordpress-3.4.2/.git/objects/4f/df2064c79441181fb4580f1d04339562ce2a37 differ
Binary files ./wordpress-3.4.1/.git/objects/4f/e391bff770917a3668b18aa2fc2e0fea28b339 and ./wordpress-3.4.2/.git/objects/4f/e391bff770917a3668b18aa2fc2e0fea28b339 differ
Binary files ./wordpress-3.4.1/.git/objects/50/088db9e691d256cd912d72cf37ea0893946fd2 and ./wordpress-3.4.2/.git/objects/50/088db9e691d256cd912d72cf37ea0893946fd2 differ
Binary files ./wordpress-3.4.1/.git/objects/50/0c8a89a05f87aef5ca5d63713e2aad5f9d0290 and ./wordpress-3.4.2/.git/objects/50/0c8a89a05f87aef5ca5d63713e2aad5f9d0290 differ
Binary files ./wordpress-3.4.1/.git/objects/50/14feac4bd656c887607210f9d062fda0e0a505 and ./wordpress-3.4.2/.git/objects/50/14feac4bd656c887607210f9d062fda0e0a505 differ
Binary files ./wordpress-3.4.1/.git/objects/50/2fe247e811741d6fa2cd4f45d1db7deff32501 and ./wordpress-3.4.2/.git/objects/50/2fe247e811741d6fa2cd4f45d1db7deff32501 differ
Binary files ./wordpress-3.4.1/.git/objects/50/4450fdd122b1ec056bd5ce77a7c10a7caedeef and ./wordpress-3.4.2/.git/objects/50/4450fdd122b1ec056bd5ce77a7c10a7caedeef differ
Binary files ./wordpress-3.4.1/.git/objects/50/ac6e0283a959c8afe2d49dcc04ce12f5be6015 and ./wordpress-3.4.2/.git/objects/50/ac6e0283a959c8afe2d49dcc04ce12f5be6015 differ
Binary files ./wordpress-3.4.1/.git/objects/50/af7389a2562acfa9a3b2ad9ab8d098c01f243a and ./wordpress-3.4.2/.git/objects/50/af7389a2562acfa9a3b2ad9ab8d098c01f243a differ
Binary files ./wordpress-3.4.1/.git/objects/50/cb37589dc806432f5c03efe79aaaad3b22567e and ./wordpress-3.4.2/.git/objects/50/cb37589dc806432f5c03efe79aaaad3b22567e differ
Binary files ./wordpress-3.4.1/.git/objects/51/4574e25d94fec0e74f9e1d582faf6954cfcf9f and ./wordpress-3.4.2/.git/objects/51/4574e25d94fec0e74f9e1d582faf6954cfcf9f differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/51/4a22b41a931d454c593091a71bca9a0a0cae58 ./wordpress-3.4.2/.git/objects/51/4a22b41a931d454c593091a71bca9a0a0cae58
*** ./wordpress-3.4.1/.git/objects/51/4a22b41a931d454c593091a71bca9a0a0cae58 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/51/4a22b41a931d454c593091a71bca9a0a0cae58 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,3 ----
+ xUKO1_aNC$x16n&lYG34&hʓt0A o m
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/5b/f19ad1ce5ceb583f6d7a2ae4515e814ca6c539 and ./wordpress-3.4.2/.git/objects/5b/f19ad1ce5ceb583f6d7a2ae4515e814ca6c539 differ
Binary files ./wordpress-3.4.1/.git/objects/5c/567fadfd5c2378109941c96c773d5b119f43da and ./wordpress-3.4.2/.git/objects/5c/567fadfd5c2378109941c96c773d5b119f43da differ
Binary files ./wordpress-3.4.1/.git/objects/5c/6243f1cfaf14bc08c5541a299b7330f2d486ed and ./wordpress-3.4.2/.git/objects/5c/6243f1cfaf14bc08c5541a299b7330f2d486ed differ
Binary files ./wordpress-3.4.1/.git/objects/5c/64a0e133ccb172db12717fc48abc2de4fe8b2d and ./wordpress-3.4.2/.git/objects/5c/64a0e133ccb172db12717fc48abc2de4fe8b2d differ
Binary files ./wordpress-3.4.1/.git/objects/5c/869b171b70739dcc9b845464564e888f80d681 and ./wordpress-3.4.2/.git/objects/5c/869b171b70739dcc9b845464564e888f80d681 differ
Binary files ./wordpress-3.4.1/.git/objects/5c/ed90166f595bb433386a2214967fa258705b28 and ./wordpress-3.4.2/.git/objects/5c/ed90166f595bb433386a2214967fa258705b28 differ
Binary files ./wordpress-3.4.1/.git/objects/5c/ee055307244c75e3fc6e194071f28839bd6366 and ./wordpress-3.4.2/.git/objects/5c/ee055307244c75e3fc6e194071f28839bd6366 differ
Binary files ./wordpress-3.4.1/.git/objects/5c/fbefeeb0f88607586150397772a5a5612bd07f and ./wordpress-3.4.2/.git/objects/5c/fbefeeb0f88607586150397772a5a5612bd07f differ
Binary files ./wordpress-3.4.1/.git/objects/5d/3978106a2da37441ed17c9d05383b367570d46 and ./wordpress-3.4.2/.git/objects/5d/3978106a2da37441ed17c9d05383b367570d46 differ
Binary files ./wordpress-3.4.1/.git/objects/5d/4a6d34ed9f1d615469d94822f56201333aa009 and ./wordpress-3.4.2/.git/objects/5d/4a6d34ed9f1d615469d94822f56201333aa009 differ
Binary files ./wordpress-3.4.1/.git/objects/5d/51ce3468153133e908e91f05e04998af9cab56 and ./wordpress-3.4.2/.git/objects/5d/51ce3468153133e908e91f05e04998af9cab56 differ
Binary files ./wordpress-3.4.1/.git/objects/5d/7766d915cc91787fd5dcba063bf8433f889c64 and ./wordpress-3.4.2/.git/objects/5d/7766d915cc91787fd5dcba063bf8433f889c64 differ
Binary files ./wordpress-3.4.1/.git/objects/5d/78c238a6717e6b9cd7f70d34f8f3d233f59e13 and ./wordpress-3.4.2/.git/objects/5d/78c238a6717e6b9cd7f70d34f8f3d233f59e13 differ
Binary files ./wordpress-3.4.1/.git/objects/5d/84497d31e139cc04a6bc02a625fcebe527b727 and ./wordpress-3.4.2/.git/objects/5d/84497d31e139cc04a6bc02a625fcebe527b727 differ
Binary files ./wordpress-3.4.1/.git/objects/5d/905efc4743758f5acbfc85d14a0e4cb46ef373 and ./wordpress-3.4.2/.git/objects/5d/905efc4743758f5acbfc85d14a0e4cb46ef373 differ
Binary files ./wordpress-3.4.1/.git/objects/5d/9205fe6e7236d0e072999313a227802caf068d and ./wordpress-3.4.2/.git/objects/5d/9205fe6e7236d0e072999313a227802caf068d differ
Binary files ./wordpress-3.4.1/.git/objects/5d/d460e301ad57298a007ec044a10ca9cd9670b6 and ./wordpress-3.4.2/.git/objects/5d/d460e301ad57298a007ec044a10ca9cd9670b6 differ
Binary files ./wordpress-3.4.1/.git/objects/5d/da4d164fb572c67702190dd08e0d5e9f932dcf and ./wordpress-3.4.2/.git/objects/5d/da4d164fb572c67702190dd08e0d5e9f932dcf differ
Binary files ./wordpress-3.4.1/.git/objects/5d/ed1bd01f95608b91ac949f1c179b3fb79d3d81 and ./wordpress-3.4.2/.git/objects/5d/ed1bd01f95608b91ac949f1c179b3fb79d3d81 differ
Binary files ./wordpress-3.4.1/.git/objects/5e/5e740e9b4226e3824caebcdd2e7187d6dd91b0 and ./wordpress-3.4.2/.git/objects/5e/5e740e9b4226e3824caebcdd2e7187d6dd91b0 differ
Binary files ./wordpress-3.4.1/.git/objects/5e/6a619bc25f5f6ba194e5e9eec671b830a6414c and ./wordpress-3.4.2/.git/objects/5e/6a619bc25f5f6ba194e5e9eec671b830a6414c differ
Binary files ./wordpress-3.4.1/.git/objects/5e/7e4265f8f40117642214da16e3cc88feb553a2 and ./wordpress-3.4.2/.git/objects/5e/7e4265f8f40117642214da16e3cc88feb553a2 differ
Binary files ./wordpress-3.4.1/.git/objects/5e/febd91bd2032872110dc62223f25e287680698 and ./wordpress-3.4.2/.git/objects/5e/febd91bd2032872110dc62223f25e287680698 differ
Binary files ./wordpress-3.4.1/.git/objects/5f/0a05e53d8fdfa21b8c3c8497253d5eab5d5758 and ./wordpress-3.4.2/.git/objects/5f/0a05e53d8fdfa21b8c3c8497253d5eab5d5758 differ
Binary files ./wordpress-3.4.1/.git/objects/5f/17b528d1b94f28fceed34cc723693ee3f65888 and ./wordpress-3.4.2/.git/objects/5f/17b528d1b94f28fceed34cc723693ee3f65888 differ
Binary files ./wordpress-3.4.1/.git/objects/5f/1f5851199320cccc0f6187155706a84eeeeb76 and ./wordpress-3.4.2/.git/objects/5f/1f5851199320cccc0f6187155706a84eeeeb76 differ
Binary files ./wordpress-3.4.1/.git/objects/5f/4c53bafb8f36e0abd4659690e21f6e758e1605 and ./wordpress-3.4.2/.git/objects/5f/4c53bafb8f36e0abd4659690e21f6e758e1605 differ
Binary files ./wordpress-3.4.1/.git/objects/5f/51b606b5fb8eb4cc512e88897ec6e877535a76 and ./wordpress-3.4.2/.git/objects/5f/51b606b5fb8eb4cc512e88897ec6e877535a76 differ
Binary files ./wordpress-3.4.1/.git/objects/5f/6ccddfb8a10a1b0e302f5ac74b561f03cff199 and ./wordpress-3.4.2/.git/objects/5f/6ccddfb8a10a1b0e302f5ac74b561f03cff199 differ
Binary files ./wordpress-3.4.1/.git/objects/5f/741f691caa89c8b7f9d18773ed263c2640fef0 and ./wordpress-3.4.2/.git/objects/5f/741f691caa89c8b7f9d18773ed263c2640fef0 differ
Binary files ./wordpress-3.4.1/.git/objects/5f/9c165e861c8718e4f2d3537d05300452ee216d and ./wordpress-3.4.2/.git/objects/5f/9c165e861c8718e4f2d3537d05300452ee216d differ
Binary files ./wordpress-3.4.1/.git/objects/5f/b9af2e0c6cc72482867a84a1c62c8f2e682ddc and ./wordpress-3.4.2/.git/objects/5f/b9af2e0c6cc72482867a84a1c62c8f2e682ddc differ
Binary files ./wordpress-3.4.1/.git/objects/5f/be4a70aac1e20394c50dedee1bfcf49cb4e419 and ./wordpress-3.4.2/.git/objects/5f/be4a70aac1e20394c50dedee1bfcf49cb4e419 differ
Binary files ./wordpress-3.4.1/.git/objects/5f/c73fcbbf8c65df2b8383f3d2e23aa57bcbffac and ./wordpress-3.4.2/.git/objects/5f/c73fcbbf8c65df2b8383f3d2e23aa57bcbffac differ
Binary files ./wordpress-3.4.1/.git/objects/60/272eeb248c4d2eaf3d3a4c2c01f933bc71037b and ./wordpress-3.4.2/.git/objects/60/272eeb248c4d2eaf3d3a4c2c01f933bc71037b differ
Binary files ./wordpress-3.4.1/.git/objects/60/3ce56aea954843791b72e497f8e5a6e692abc9 and ./wordpress-3.4.2/.git/objects/60/3ce56aea954843791b72e497f8e5a6e692abc9 differ
Binary files ./wordpress-3.4.1/.git/objects/60/3dbf145fd27c432af569872952055f382a3a8f and ./wordpress-3.4.2/.git/objects/60/3dbf145fd27c432af569872952055f382a3a8f differ
Binary files ./wordpress-3.4.1/.git/objects/60/54e237c96c9bb9f3f61ac30027a731b20a8e6f and ./wordpress-3.4.2/.git/objects/60/54e237c96c9bb9f3f61ac30027a731b20a8e6f differ
Binary files ./wordpress-3.4.1/.git/objects/60/57cc3a690e6aa30c579c0954fadf0de6ffd5fb and ./wordpress-3.4.2/.git/objects/60/57cc3a690e6aa30c579c0954fadf0de6ffd5fb differ
Binary files ./wordpress-3.4.1/.git/objects/60/a6d5d96fe84866bbfac89b609ccf53f3bd5be6 and ./wordpress-3.4.2/.git/objects/60/a6d5d96fe84866bbfac89b609ccf53f3bd5be6 differ
Binary files ./wordpress-3.4.1/.git/objects/60/d013d3ad50bccafd8251ad561366f550125233 and ./wordpress-3.4.2/.git/objects/60/d013d3ad50bccafd8251ad561366f550125233 differ
Binary files ./wordpress-3.4.1/.git/objects/60/dc2d8230f43eb10098bf40e9cfb4f3a8bfbb7a and ./wordpress-3.4.2/.git/objects/60/dc2d8230f43eb10098bf40e9cfb4f3a8bfbb7a differ
Binary files ./wordpress-3.4.1/.git/objects/61/28495d88c08007cc799d0c71f59ff83e310330 and ./wordpress-3.4.2/.git/objects/61/28495d88c08007cc799d0c71f59ff83e310330 differ
Binary files ./wordpress-3.4.1/.git/objects/61/36db535f9ef7d757449a5e96843aa9606a7530 and ./wordpress-3.4.2/.git/objects/61/36db535f9ef7d757449a5e96843aa9606a7530 differ
Binary files ./wordpress-3.4.1/.git/objects/61/3cff8236016fcd1c00c579356a3962e271e3dc and ./wordpress-3.4.2/.git/objects/61/3cff8236016fcd1c00c579356a3962e271e3dc differ
Binary files ./wordpress-3.4.1/.git/objects/61/71510f8f46d1ad17e17bc9a74553308aa2cbc1 and ./wordpress-3.4.2/.git/objects/61/71510f8f46d1ad17e17bc9a74553308aa2cbc1 differ
Binary files ./wordpress-3.4.1/.git/objects/61/bd538b1ac75f388d3ae22e8cddbda590cacd45 and ./wordpress-3.4.2/.git/objects/61/bd538b1ac75f388d3ae22e8cddbda590cacd45 differ
Binary files ./wordpress-3.4.1/.git/objects/61/c8956fc21e73b1b366cac47e02a416db64df55 and ./wordpress-3.4.2/.git/objects/61/c8956fc21e73b1b366cac47e02a416db64df55 differ
Binary files ./wordpress-3.4.1/.git/objects/61/e775ed620d6976f593bbdf248915d9b51d1546 and ./wordpress-3.4.2/.git/objects/61/e775ed620d6976f593bbdf248915d9b51d1546 differ
Binary files ./wordpress-3.4.1/.git/objects/62/200328fddc2de0805db758fb758bcb4d65d8e2 and ./wordpress-3.4.2/.git/objects/62/200328fddc2de0805db758fb758bcb4d65d8e2 differ
Binary files ./wordpress-3.4.1/.git/objects/62/3ca400567e62f7ae9aa2ea9794833d313020c0 and ./wordpress-3.4.2/.git/objects/62/3ca400567e62f7ae9aa2ea9794833d313020c0 differ
Binary files ./wordpress-3.4.1/.git/objects/62/46176b88399343f469276f4e8242223526f74d and ./wordpress-3.4.2/.git/objects/62/46176b88399343f469276f4e8242223526f74d differ
Binary files ./wordpress-3.4.1/.git/objects/62/8baa4d6c426c7253861e023fb4a1f0e393f838 and ./wordpress-3.4.2/.git/objects/62/8baa4d6c426c7253861e023fb4a1f0e393f838 differ
Binary files ./wordpress-3.4.1/.git/objects/62/e8f32d575919be0a248ac282bd4457bdf3c288 and ./wordpress-3.4.2/.git/objects/62/e8f32d575919be0a248ac282bd4457bdf3c288 differ
Binary files ./wordpress-3.4.1/.git/objects/62/f7bce6b3e4eb90bd232435409545ae6ce5936a and ./wordpress-3.4.2/.git/objects/62/f7bce6b3e4eb90bd232435409545ae6ce5936a differ
Binary files ./wordpress-3.4.1/.git/objects/63/1fa0ec874001708bfa20500145e5e7c05cd0f9 and ./wordpress-3.4.2/.git/objects/63/1fa0ec874001708bfa20500145e5e7c05cd0f9 differ
Binary files ./wordpress-3.4.1/.git/objects/63/977a5bfda6447cb36d8f12b84b813b841848bd and ./wordpress-3.4.2/.git/objects/63/977a5bfda6447cb36d8f12b84b813b841848bd differ
Binary files ./wordpress-3.4.1/.git/objects/63/f718dfb6503f4791e400cb3c9820f817d59788 and ./wordpress-3.4.2/.git/objects/63/f718dfb6503f4791e400cb3c9820f817d59788 differ
Binary files ./wordpress-3.4.1/.git/objects/64/1a9e3d314f4ea051692a2274aeb281456f5df9 and ./wordpress-3.4.2/.git/objects/64/1a9e3d314f4ea051692a2274aeb281456f5df9 differ
Binary files ./wordpress-3.4.1/.git/objects/64/32dbedb3febe47539bafe297dba1b9c8eecf5b and ./wordpress-3.4.2/.git/objects/64/32dbedb3febe47539bafe297dba1b9c8eecf5b differ
Binary files ./wordpress-3.4.1/.git/objects/64/a60d46b31ed799fb52a0cdd1ef3bbfab35966b and ./wordpress-3.4.2/.git/objects/64/a60d46b31ed799fb52a0cdd1ef3bbfab35966b differ
Binary files ./wordpress-3.4.1/.git/objects/64/b7b6dc764ad576e8e4c13ff99635d5e29a00fa and ./wordpress-3.4.2/.git/objects/64/b7b6dc764ad576e8e4c13ff99635d5e29a00fa differ
Binary files ./wordpress-3.4.1/.git/objects/64/c7bab94e75de9088966028822c60bc2a7089c9 and ./wordpress-3.4.2/.git/objects/64/c7bab94e75de9088966028822c60bc2a7089c9 differ
Binary files ./wordpress-3.4.1/.git/objects/65/3ed540dc8db6c8b5bae39e3a5915e275445d64 and ./wordpress-3.4.2/.git/objects/65/3ed540dc8db6c8b5bae39e3a5915e275445d64 differ
Binary files ./wordpress-3.4.1/.git/objects/65/46621014d209aa98098acbeeedbb5143c914ea and ./wordpress-3.4.2/.git/objects/65/46621014d209aa98098acbeeedbb5143c914ea differ
Binary files ./wordpress-3.4.1/.git/objects/65/531c84122878123c86672f71e2954cd0511fe4 and ./wordpress-3.4.2/.git/objects/65/531c84122878123c86672f71e2954cd0511fe4 differ
Binary files ./wordpress-3.4.1/.git/objects/65/6ce1eee606d2321e5ce1833898b449b3084a12 and ./wordpress-3.4.2/.git/objects/65/6ce1eee606d2321e5ce1833898b449b3084a12 differ
Binary files ./wordpress-3.4.1/.git/objects/65/df60e80267157b645c3f5643ef7d30b2b304a1 and ./wordpress-3.4.2/.git/objects/65/df60e80267157b645c3f5643ef7d30b2b304a1 differ
Binary files ./wordpress-3.4.1/.git/objects/65/f9ee99383c5b3b3554c0676a2a0a90a6054ea0 and ./wordpress-3.4.2/.git/objects/65/f9ee99383c5b3b3554c0676a2a0a90a6054ea0 differ
Binary files ./wordpress-3.4.1/.git/objects/66/79e11d24730167d0305e972a220b67870541ee and ./wordpress-3.4.2/.git/objects/66/79e11d24730167d0305e972a220b67870541ee differ
Binary files ./wordpress-3.4.1/.git/objects/66/8bd2200ec182d6a7fe8924c08e55e9297ef2ca and ./wordpress-3.4.2/.git/objects/66/8bd2200ec182d6a7fe8924c08e55e9297ef2ca differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/66/b8bbfd406c33e7c038fb61d8b6f6527a962c85 ./wordpress-3.4.2/.git/objects/66/b8bbfd406c33e7c038fb61d8b6f6527a962c85
*** ./wordpress-3.4.1/.git/objects/66/b8bbfd406c33e7c038fb61d8b6f6527a962c85 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/66/b8bbfd406c33e7c038fb61d8b6f6527a962c85 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ xS0$k+nVU|XukjW&6
+ !(R03yޛ0j,8]A)yڔrSD|Hs\(c֮Q gp)U.!M6$[XkJºlP<PJ m1:b۲E!8XhC,W.j}3N#V.)4ya=;_,0VƖ$a;F3|\#Rp1F;cQn"n+{DRy1b.kq@Z%]U)~}]>u\^}P&..Sb4LGnRV˩]*SzOePtNvP wY^hY3빾XSK2ƃ߀KӵDtq'Djܐij{ye_ilMdnU^'H0!
Y)(q|W^I
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/66/e3bbc681e13db6157de9819ab8c5163ae11815 and ./wordpress-3.4.2/.git/objects/66/e3bbc681e13db6157de9819ab8c5163ae11815 differ
Binary files ./wordpress-3.4.1/.git/objects/66/eddaa7fc2a7c7528ddbde6a65647f79418e40f and ./wordpress-3.4.2/.git/objects/66/eddaa7fc2a7c7528ddbde6a65647f79418e40f differ
Binary files ./wordpress-3.4.1/.git/objects/66/ff71fc36b6480225db2d9fe94a328cfbbeb477 and ./wordpress-3.4.2/.git/objects/66/ff71fc36b6480225db2d9fe94a328cfbbeb477 differ
Binary files ./wordpress-3.4.1/.git/objects/67/0648a2c38d5585eeb47f527001cfc61e4b7a67 and ./wordpress-3.4.2/.git/objects/67/0648a2c38d5585eeb47f527001cfc61e4b7a67 differ
Binary files ./wordpress-3.4.1/.git/objects/67/09ba7bde6316beb2743ebbf496286ea1776a16 and ./wordpress-3.4.2/.git/objects/67/09ba7bde6316beb2743ebbf496286ea1776a16 differ
Binary files ./wordpress-3.4.1/.git/objects/67/36e6b009f4bd3c24b9a1cc5a5292d2e34b9dff and ./wordpress-3.4.2/.git/objects/67/36e6b009f4bd3c24b9a1cc5a5292d2e34b9dff differ
Binary files ./wordpress-3.4.1/.git/objects/67/564fd65000e65dd76aeeb19273743af0131975 and ./wordpress-3.4.2/.git/objects/67/564fd65000e65dd76aeeb19273743af0131975 differ
Binary files ./wordpress-3.4.1/.git/objects/67/5a76a74fd6d5ee4bd5f1c0721fc4cc82daeb18 and ./wordpress-3.4.2/.git/objects/67/5a76a74fd6d5ee4bd5f1c0721fc4cc82daeb18 differ
Binary files ./wordpress-3.4.1/.git/objects/67/9974e6a7ac1f75574428c6aae04c621a0d839a and ./wordpress-3.4.2/.git/objects/67/9974e6a7ac1f75574428c6aae04c621a0d839a differ
Binary files ./wordpress-3.4.1/.git/objects/68/7b241eec371858a6b084712623ee9e1f89e2c7 and ./wordpress-3.4.2/.git/objects/68/7b241eec371858a6b084712623ee9e1f89e2c7 differ
Binary files ./wordpress-3.4.1/.git/objects/68/9479c9fb2dfc2df6487b0a5b6c8488107a0eed and ./wordpress-3.4.2/.git/objects/68/9479c9fb2dfc2df6487b0a5b6c8488107a0eed differ
Binary files ./wordpress-3.4.1/.git/objects/68/f7ed6cf0d44dc9acfce5ef4feb2e3015af5117 and ./wordpress-3.4.2/.git/objects/68/f7ed6cf0d44dc9acfce5ef4feb2e3015af5117 differ
Binary files ./wordpress-3.4.1/.git/objects/69/6ff15d87901ddfe9bf16d1ed8b1902a811f6c0 and ./wordpress-3.4.2/.git/objects/69/6ff15d87901ddfe9bf16d1ed8b1902a811f6c0 differ
Binary files ./wordpress-3.4.1/.git/objects/69/77bffad14745086a1effac05c7ced3806da154 and ./wordpress-3.4.2/.git/objects/69/77bffad14745086a1effac05c7ced3806da154 differ
Binary files ./wordpress-3.4.1/.git/objects/69/8f2a0b5e51e15f91fa6b7c4eca216672fcac56 and ./wordpress-3.4.2/.git/objects/69/8f2a0b5e51e15f91fa6b7c4eca216672fcac56 differ
Binary files ./wordpress-3.4.1/.git/objects/69/a16271dfae62611e92735a7db7f049d93769d6 and ./wordpress-3.4.2/.git/objects/69/a16271dfae62611e92735a7db7f049d93769d6 differ
Binary files ./wordpress-3.4.1/.git/objects/69/a86c1378aec5a6185c591456f7a6d9c739b5b0 and ./wordpress-3.4.2/.git/objects/69/a86c1378aec5a6185c591456f7a6d9c739b5b0 differ
Binary files ./wordpress-3.4.1/.git/objects/69/e0352482807c899f16add0e6f6b618b55b1420 and ./wordpress-3.4.2/.git/objects/69/e0352482807c899f16add0e6f6b618b55b1420 differ
Binary files ./wordpress-3.4.1/.git/objects/6a/1b41cdaf417a47e8db12cbc3a58126b71e4056 and ./wordpress-3.4.2/.git/objects/6a/1b41cdaf417a47e8db12cbc3a58126b71e4056 differ
Binary files ./wordpress-3.4.1/.git/objects/6a/48f46908e4e9250c52bcbfbf75ee7ec91bfbb1 and ./wordpress-3.4.2/.git/objects/6a/48f46908e4e9250c52bcbfbf75ee7ec91bfbb1 differ
Binary files ./wordpress-3.4.1/.git/objects/6a/567348ced8f40804cf9bbde525c0b53fea5b7c and ./wordpress-3.4.2/.git/objects/6a/567348ced8f40804cf9bbde525c0b53fea5b7c differ
Binary files ./wordpress-3.4.1/.git/objects/6a/85f4cb7dba7995a46bfd042792fe951889312d and ./wordpress-3.4.2/.git/objects/6a/85f4cb7dba7995a46bfd042792fe951889312d differ
Binary files ./wordpress-3.4.1/.git/objects/6a/d58d1d62c58fac2a85c72bcd0ff21f2210113b and ./wordpress-3.4.2/.git/objects/6a/d58d1d62c58fac2a85c72bcd0ff21f2210113b differ
Binary files ./wordpress-3.4.1/.git/objects/6b/342c8576d046ca6fd1d65fb22b5239b1f24674 and ./wordpress-3.4.2/.git/objects/6b/342c8576d046ca6fd1d65fb22b5239b1f24674 differ
Binary files ./wordpress-3.4.1/.git/objects/6b/4b032389d13fc16f39e59eaa9f73dee6db7ef4 and ./wordpress-3.4.2/.git/objects/6b/4b032389d13fc16f39e59eaa9f73dee6db7ef4 differ
Binary files ./wordpress-3.4.1/.git/objects/6b/67efae84818d3bbc0dd712bfbbb03a44934702 and ./wordpress-3.4.2/.git/objects/6b/67efae84818d3bbc0dd712bfbbb03a44934702 differ
Binary files ./wordpress-3.4.1/.git/objects/6b/b48c0fca4ee773b3374750894181c250d9aca0 and ./wordpress-3.4.2/.git/objects/6b/b48c0fca4ee773b3374750894181c250d9aca0 differ
Binary files ./wordpress-3.4.1/.git/objects/6b/f437acc4b26a9071ba329c6ecb4e3b79c2c857 and ./wordpress-3.4.2/.git/objects/6b/f437acc4b26a9071ba329c6ecb4e3b79c2c857 differ
Binary files ./wordpress-3.4.1/.git/objects/6b/f8797940cd1af1c819597b0f9f5ef52ffcf505 and ./wordpress-3.4.2/.git/objects/6b/f8797940cd1af1c819597b0f9f5ef52ffcf505 differ
Binary files ./wordpress-3.4.1/.git/objects/6c/51d075eeab08c96cb09c4b7ebe47a4e7fad0cd and ./wordpress-3.4.2/.git/objects/6c/51d075eeab08c96cb09c4b7ebe47a4e7fad0cd differ
Binary files ./wordpress-3.4.1/.git/objects/6c/589ec3713bad3bba2793e0fa07da1939640ed1 and ./wordpress-3.4.2/.git/objects/6c/589ec3713bad3bba2793e0fa07da1939640ed1 differ
Binary files ./wordpress-3.4.1/.git/objects/6c/65f3361666d9dc3d653bd01d9ea855eff25161 and ./wordpress-3.4.2/.git/objects/6c/65f3361666d9dc3d653bd01d9ea855eff25161 differ
Binary files ./wordpress-3.4.1/.git/objects/6c/f1da4aacaa8aad7cec2551c720ef9117456f05 and ./wordpress-3.4.2/.git/objects/6c/f1da4aacaa8aad7cec2551c720ef9117456f05 differ
Binary files ./wordpress-3.4.1/.git/objects/6d/26de3164273b9d630f9f81165854e148817bc9 and ./wordpress-3.4.2/.git/objects/6d/26de3164273b9d630f9f81165854e148817bc9 differ
Binary files ./wordpress-3.4.1/.git/objects/6d/2f495e38cde56d9d21ddba692f124320ca9b8c and ./wordpress-3.4.2/.git/objects/6d/2f495e38cde56d9d21ddba692f124320ca9b8c differ
Binary files ./wordpress-3.4.1/.git/objects/6d/d03a4ce4dda310479810641b48d8815372b7f9 and ./wordpress-3.4.2/.git/objects/6d/d03a4ce4dda310479810641b48d8815372b7f9 differ
Binary files ./wordpress-3.4.1/.git/objects/6d/e7abf538c1c428671d40401bd3df6e0188a429 and ./wordpress-3.4.2/.git/objects/6d/e7abf538c1c428671d40401bd3df6e0188a429 differ
Binary files ./wordpress-3.4.1/.git/objects/6d/fb577e85edc4f199823469fe5a8286c3d849b8 and ./wordpress-3.4.2/.git/objects/6d/fb577e85edc4f199823469fe5a8286c3d849b8 differ
Binary files ./wordpress-3.4.1/.git/objects/6e/25a1fa3efa6518da163c780af1ff8b10cdd0bb and ./wordpress-3.4.2/.git/objects/6e/25a1fa3efa6518da163c780af1ff8b10cdd0bb differ
Binary files ./wordpress-3.4.1/.git/objects/6e/50e2eecdb54d2ee3a14c39547a6b454524f98d and ./wordpress-3.4.2/.git/objects/6e/50e2eecdb54d2ee3a14c39547a6b454524f98d differ
Binary files ./wordpress-3.4.1/.git/objects/6e/56e026a920ba5cc4133565d6bfbc2ef9f18903 and ./wordpress-3.4.2/.git/objects/6e/56e026a920ba5cc4133565d6bfbc2ef9f18903 differ
Binary files ./wordpress-3.4.1/.git/objects/6e/5d3b8116f1545b0d72427c4297180a3eba3c56 and ./wordpress-3.4.2/.git/objects/6e/5d3b8116f1545b0d72427c4297180a3eba3c56 differ
Binary files ./wordpress-3.4.1/.git/objects/6e/684f48b342b363654d66273e1810b302689bb6 and ./wordpress-3.4.2/.git/objects/6e/684f48b342b363654d66273e1810b302689bb6 differ
Binary files ./wordpress-3.4.1/.git/objects/6e/7b676b345588a734dce002843a442520931170 and ./wordpress-3.4.2/.git/objects/6e/7b676b345588a734dce002843a442520931170 differ
Binary files ./wordpress-3.4.1/.git/objects/6e/7d5f0d0726e8ff692b902dccf85cb311030e63 and ./wordpress-3.4.2/.git/objects/6e/7d5f0d0726e8ff692b902dccf85cb311030e63 differ
Binary files ./wordpress-3.4.1/.git/objects/6f/1e765f862317b0fef4dfe828acdf400d918a06 and ./wordpress-3.4.2/.git/objects/6f/1e765f862317b0fef4dfe828acdf400d918a06 differ
Binary files ./wordpress-3.4.1/.git/objects/6f/62fe606dd974e5235a8a9125943d895f2a4b15 and ./wordpress-3.4.2/.git/objects/6f/62fe606dd974e5235a8a9125943d895f2a4b15 differ
Binary files ./wordpress-3.4.1/.git/objects/6f/7d9ad3a44dad98db8bbb814973a368d7386394 and ./wordpress-3.4.2/.git/objects/6f/7d9ad3a44dad98db8bbb814973a368d7386394 differ
Binary files ./wordpress-3.4.1/.git/objects/6f/e25de090fae155f6e109463c6b78f26baccb3b and ./wordpress-3.4.2/.git/objects/6f/e25de090fae155f6e109463c6b78f26baccb3b differ
Binary files ./wordpress-3.4.1/.git/objects/70/01c98bcbb736ed5ba31497dd51bedb4350b831 and ./wordpress-3.4.2/.git/objects/70/01c98bcbb736ed5ba31497dd51bedb4350b831 differ
Binary files ./wordpress-3.4.1/.git/objects/70/9e7f97c881b330529c0000e51fd7fbd27eb5f6 and ./wordpress-3.4.2/.git/objects/70/9e7f97c881b330529c0000e51fd7fbd27eb5f6 differ
Binary files ./wordpress-3.4.1/.git/objects/70/b5505331330db0932fddeadb627f823e217f69 and ./wordpress-3.4.2/.git/objects/70/b5505331330db0932fddeadb627f823e217f69 differ
Binary files ./wordpress-3.4.1/.git/objects/71/0049a36e4c7af5634f849dc08b956d9857ad80 and ./wordpress-3.4.2/.git/objects/71/0049a36e4c7af5634f849dc08b956d9857ad80 differ
Binary files ./wordpress-3.4.1/.git/objects/71/19018b1fe6e7d6881355ff48a34032367133e4 and ./wordpress-3.4.2/.git/objects/71/19018b1fe6e7d6881355ff48a34032367133e4 differ
Binary files ./wordpress-3.4.1/.git/objects/71/2665fa0f56891e44b4e82a555ef050e6a2f859 and ./wordpress-3.4.2/.git/objects/71/2665fa0f56891e44b4e82a555ef050e6a2f859 differ
Binary files ./wordpress-3.4.1/.git/objects/71/f5d25f50d1d2b089d46b44c067fe558fe76dea and ./wordpress-3.4.2/.git/objects/71/f5d25f50d1d2b089d46b44c067fe558fe76dea differ
Binary files ./wordpress-3.4.1/.git/objects/71/fbb68a644154a18bd6cd0fc3099e751f6cf42f and ./wordpress-3.4.2/.git/objects/71/fbb68a644154a18bd6cd0fc3099e751f6cf42f differ
Binary files ./wordpress-3.4.1/.git/objects/72/96cb6766c40e7388b2a11e97db19c94a52041d and ./wordpress-3.4.2/.git/objects/72/96cb6766c40e7388b2a11e97db19c94a52041d differ
Binary files ./wordpress-3.4.1/.git/objects/72/e024045aa1ed0709065ad22fb21a1d2bf6b2c4 and ./wordpress-3.4.2/.git/objects/72/e024045aa1ed0709065ad22fb21a1d2bf6b2c4 differ
Binary files ./wordpress-3.4.1/.git/objects/72/ea7ccb5321d5384d70437cfaac73011237901e and ./wordpress-3.4.2/.git/objects/72/ea7ccb5321d5384d70437cfaac73011237901e differ
Binary files ./wordpress-3.4.1/.git/objects/73/1985eebdef116872306cd4659e78e48b872da7 and ./wordpress-3.4.2/.git/objects/73/1985eebdef116872306cd4659e78e48b872da7 differ
Binary files ./wordpress-3.4.1/.git/objects/73/6fc5a223b6105a5c102354b39357a447caeeb2 and ./wordpress-3.4.2/.git/objects/73/6fc5a223b6105a5c102354b39357a447caeeb2 differ
Binary files ./wordpress-3.4.1/.git/objects/73/92fb664c08a6350e59eb6ac6bc2013af03428c and ./wordpress-3.4.2/.git/objects/73/92fb664c08a6350e59eb6ac6bc2013af03428c differ
Binary files ./wordpress-3.4.1/.git/objects/73/9b888f32573b02c0e4535df814bf949f068745 and ./wordpress-3.4.2/.git/objects/73/9b888f32573b02c0e4535df814bf949f068745 differ
Binary files ./wordpress-3.4.1/.git/objects/73/dbb48fef968e42ec95646cd1199e033443af60 and ./wordpress-3.4.2/.git/objects/73/dbb48fef968e42ec95646cd1199e033443af60 differ
Binary files ./wordpress-3.4.1/.git/objects/74/0ffebb09cea2c7c83a4dc7b1e32ff8046d36b6 and ./wordpress-3.4.2/.git/objects/74/0ffebb09cea2c7c83a4dc7b1e32ff8046d36b6 differ
Binary files ./wordpress-3.4.1/.git/objects/74/23cf9214919c186fba6b08634ef701a2c80118 and ./wordpress-3.4.2/.git/objects/74/23cf9214919c186fba6b08634ef701a2c80118 differ
Binary files ./wordpress-3.4.1/.git/objects/74/5616865972fa8a501c83036e124c877dacdec9 and ./wordpress-3.4.2/.git/objects/74/5616865972fa8a501c83036e124c877dacdec9 differ
Binary files ./wordpress-3.4.1/.git/objects/74/7b228d535897b2aa674c412f35371dbaddf966 and ./wordpress-3.4.2/.git/objects/74/7b228d535897b2aa674c412f35371dbaddf966 differ
Binary files ./wordpress-3.4.1/.git/objects/74/ad1105d7147b866dd1f631bd80bcac13a026d8 and ./wordpress-3.4.2/.git/objects/74/ad1105d7147b866dd1f631bd80bcac13a026d8 differ
Binary files ./wordpress-3.4.1/.git/objects/74/c01414e673dcf2b722b8dff695cddb50b58590 and ./wordpress-3.4.2/.git/objects/74/c01414e673dcf2b722b8dff695cddb50b58590 differ
Binary files ./wordpress-3.4.1/.git/objects/75/2f3e2a059b9738343ef0fc203155fae5744e3a and ./wordpress-3.4.2/.git/objects/75/2f3e2a059b9738343ef0fc203155fae5744e3a differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/75/35a6a0a005cfd6a85416b0b3bd0884162ed978 ./wordpress-3.4.2/.git/objects/75/35a6a0a005cfd6a85416b0b3bd0884162ed978
*** ./wordpress-3.4.1/.git/objects/75/35a6a0a005cfd6a85416b0b3bd0884162ed978 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/75/35a6a0a005cfd6a85416b0b3bd0884162ed978 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,6 ----
+ xN@{O1BH.Qlz(M[C/=7=+ֻ0Y')8Ȇ"+̷TN>. k~~v>3HMxy
+ f55ZJ*u.Ux A$05-y
+ 㿬`j@jA BGc:܊E3
LTo'qdko3>oO&(rG!ďz ikI;NlN\KN\3ah̊߸͵ٍPsVvK^x4&1S0|a&
2ipa$:-fѩ
+ y0d4
+ `3-+Ah^k"D$p܋R"6*ApXkբG^cSXQ8b_tU!~9:6o8Cb?%6EІcm㆓ˬQ*6*DQ{v
\>Xs܅3Euvqxs
VǑЎUd:n͒nWMrr[3y]6kYB
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/75/58243c183cf8c11f4a1f7dc5231838b7dac6a6 and ./wordpress-3.4.2/.git/objects/75/58243c183cf8c11f4a1f7dc5231838b7dac6a6 differ
Binary files ./wordpress-3.4.1/.git/objects/75/85793df7ea5594ce41b65fce68a83f2cd423d2 and ./wordpress-3.4.2/.git/objects/75/85793df7ea5594ce41b65fce68a83f2cd423d2 differ
Binary files ./wordpress-3.4.1/.git/objects/75/f3c6079381fe133b10a048e92016e80bec514e and ./wordpress-3.4.2/.git/objects/75/f3c6079381fe133b10a048e92016e80bec514e differ
Binary files ./wordpress-3.4.1/.git/objects/76/0d0290fd944b435a9c22ffe8e4fb5cc1048a8c and ./wordpress-3.4.2/.git/objects/76/0d0290fd944b435a9c22ffe8e4fb5cc1048a8c differ
Binary files ./wordpress-3.4.1/.git/objects/76/5bbffcfce17850a80c550a0ec86e7df801d546 and ./wordpress-3.4.2/.git/objects/76/5bbffcfce17850a80c550a0ec86e7df801d546 differ
Binary files ./wordpress-3.4.1/.git/objects/76/97258e3a1a080b982f09aa53f004846b7b78f1 and ./wordpress-3.4.2/.git/objects/76/97258e3a1a080b982f09aa53f004846b7b78f1 differ
Binary files ./wordpress-3.4.1/.git/objects/77/0390f6757fa9f3d2e5697dfcdf508b99bb267b and ./wordpress-3.4.2/.git/objects/77/0390f6757fa9f3d2e5697dfcdf508b99bb267b differ
Binary files ./wordpress-3.4.1/.git/objects/77/09bf14ccbbaf1493e3017f2de9cb78bf7a76ca and ./wordpress-3.4.2/.git/objects/77/09bf14ccbbaf1493e3017f2de9cb78bf7a76ca differ
Binary files ./wordpress-3.4.1/.git/objects/77/5a7a0329ea8be6b070b9491f3b4acaaac653f8 and ./wordpress-3.4.2/.git/objects/77/5a7a0329ea8be6b070b9491f3b4acaaac653f8 differ
Binary files ./wordpress-3.4.1/.git/objects/77/7802ae9e6c48e726e5947f9fad0a0fd27a5600 and ./wordpress-3.4.2/.git/objects/77/7802ae9e6c48e726e5947f9fad0a0fd27a5600 differ
Binary files ./wordpress-3.4.1/.git/objects/78/046013336626dbaf510b5804bcc4a70dda3ce9 and ./wordpress-3.4.2/.git/objects/78/046013336626dbaf510b5804bcc4a70dda3ce9 differ
Binary files ./wordpress-3.4.1/.git/objects/78/211901036984170c28fc6721f12f19ac45a377 and ./wordpress-3.4.2/.git/objects/78/211901036984170c28fc6721f12f19ac45a377 differ
Binary files ./wordpress-3.4.1/.git/objects/78/4ac24f1774be9b73a2e0b31462189cbcabe3f2 and ./wordpress-3.4.2/.git/objects/78/4ac24f1774be9b73a2e0b31462189cbcabe3f2 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/78/6e4f55de224e5d346df90e2d490e51b16474f4 ./wordpress-3.4.2/.git/objects/78/6e4f55de224e5d346df90e2d490e51b16474f4
*** ./wordpress-3.4.1/.git/objects/78/6e4f55de224e5d346df90e2d490e51b16474f4 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/78/6e4f55de224e5d346df90e2d490e51b16474f4 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ xKOR04dptLaa0sM[_бS^x%KrыePOV.0Z>k鲜!t2M&+>cj\9w^+X83@+칰PT)H;
\ No newline at end of file
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/79/5495a664090ba25694944a8fb950732d7704d5 ./wordpress-3.4.2/.git/objects/79/5495a664090ba25694944a8fb950732d7704d5
*** ./wordpress-3.4.1/.git/objects/79/5495a664090ba25694944a8fb950732d7704d5 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/79/5495a664090ba25694944a8fb950732d7704d5 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ x_K0}]?E(Ba͓9eB44 I~|Ӥ27ѷޓ9FB:i*YOPkB?}&璊}+p2A!YpKfeyX\ [bJ
Bd²=okSvFވ:[A\Y |c/^ܷACHs*ijb̢,7jY>}W"MO(މaJ߃;B !QKol5xdw\iF}Zk8= =0ҡ`e`.Qȗ7߾IXS),//⌰f[tSc@٬^j'MWPD?
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/7b/959e3a186e5e35db7fa492755502efec246c63 and ./wordpress-3.4.2/.git/objects/7b/959e3a186e5e35db7fa492755502efec246c63 differ
Binary files ./wordpress-3.4.1/.git/objects/7b/c3fd4671fb1f3a22ea7b234617acd61282f17e and ./wordpress-3.4.2/.git/objects/7b/c3fd4671fb1f3a22ea7b234617acd61282f17e differ
Binary files ./wordpress-3.4.1/.git/objects/7b/dbd292fc5b91cdcc629b3faa45320288832e57 and ./wordpress-3.4.2/.git/objects/7b/dbd292fc5b91cdcc629b3faa45320288832e57 differ
Binary files ./wordpress-3.4.1/.git/objects/7b/fd25d58aca207c062a4869a4b972fb08bc31f6 and ./wordpress-3.4.2/.git/objects/7b/fd25d58aca207c062a4869a4b972fb08bc31f6 differ
Binary files ./wordpress-3.4.1/.git/objects/7c/0939b6b8cf542370ac6170f011c475b8b495e1 and ./wordpress-3.4.2/.git/objects/7c/0939b6b8cf542370ac6170f011c475b8b495e1 differ
Binary files ./wordpress-3.4.1/.git/objects/7c/ae6f167b95e40906d1cb6121560f68cba25db0 and ./wordpress-3.4.2/.git/objects/7c/ae6f167b95e40906d1cb6121560f68cba25db0 differ
Binary files ./wordpress-3.4.1/.git/objects/7c/f7b97562cd23fe7e56a039a2a32ad89248ff81 and ./wordpress-3.4.2/.git/objects/7c/f7b97562cd23fe7e56a039a2a32ad89248ff81 differ
Binary files ./wordpress-3.4.1/.git/objects/7d/0a4dbca03cc13177a359a5f175dda819fdf464 and ./wordpress-3.4.2/.git/objects/7d/0a4dbca03cc13177a359a5f175dda819fdf464 differ
Binary files ./wordpress-3.4.1/.git/objects/7d/18bb9a695d8a8db408a3bdc22a93897f0f44cc and ./wordpress-3.4.2/.git/objects/7d/18bb9a695d8a8db408a3bdc22a93897f0f44cc differ
Binary files ./wordpress-3.4.1/.git/objects/7d/1b9beefe1b070a00dc9e38e2c7d2d70738c285 and ./wordpress-3.4.2/.git/objects/7d/1b9beefe1b070a00dc9e38e2c7d2d70738c285 differ
Binary files ./wordpress-3.4.1/.git/objects/7d/54b1f994bb20c2a17c6e9e53edb39e0444b380 and ./wordpress-3.4.2/.git/objects/7d/54b1f994bb20c2a17c6e9e53edb39e0444b380 differ
Binary files ./wordpress-3.4.1/.git/objects/7d/836a53b4e4d5c102add61cf571b3c6918a2b49 and ./wordpress-3.4.2/.git/objects/7d/836a53b4e4d5c102add61cf571b3c6918a2b49 differ
Binary files ./wordpress-3.4.1/.git/objects/7d/ed18d1bdeec23eda8323ba5e90fb7932355763 and ./wordpress-3.4.2/.git/objects/7d/ed18d1bdeec23eda8323ba5e90fb7932355763 differ
Binary files ./wordpress-3.4.1/.git/objects/7e/0262034fd18563504ea0dc8a9de17e0adc88d6 and ./wordpress-3.4.2/.git/objects/7e/0262034fd18563504ea0dc8a9de17e0adc88d6 differ
Binary files ./wordpress-3.4.1/.git/objects/7e/08dc2182ced8e41c424fec07a8eeb463d22164 and ./wordpress-3.4.2/.git/objects/7e/08dc2182ced8e41c424fec07a8eeb463d22164 differ
Binary files ./wordpress-3.4.1/.git/objects/7e/109182559548a8279d5c01139bbf485e708f4b and ./wordpress-3.4.2/.git/objects/7e/109182559548a8279d5c01139bbf485e708f4b differ
Binary files ./wordpress-3.4.1/.git/objects/7e/3127a348bb5f458f4ef5cac35af5163b4e80c4 and ./wordpress-3.4.2/.git/objects/7e/3127a348bb5f458f4ef5cac35af5163b4e80c4 differ
Binary files ./wordpress-3.4.1/.git/objects/7e/c3c426aa54e7d8367fbc611d57885a2f3bcadc and ./wordpress-3.4.2/.git/objects/7e/c3c426aa54e7d8367fbc611d57885a2f3bcadc differ
Binary files ./wordpress-3.4.1/.git/objects/7e/e32cb5155cf713da9eaf58a701fddd0030777b and ./wordpress-3.4.2/.git/objects/7e/e32cb5155cf713da9eaf58a701fddd0030777b differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/7e/f5027286274d42092328b7fc7b7f21b97bdd2f ./wordpress-3.4.2/.git/objects/7e/f5027286274d42092328b7fc7b7f21b97bdd2f
*** ./wordpress-3.4.1/.git/objects/7e/f5027286274d42092328b7fc7b7f21b97bdd2f 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/7e/f5027286274d42092328b7fc7b7f21b97bdd2f 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ xm[k@y($(RK/ىnMvk13gf6~pwX.Jtt*GxaV@$΄/%ݑ ]jU$NR*]>W{PRPZT9Hȕ^:i㚣p-1ûh0
T{KvSTPXV4oH<7BU=nkeƢHsd2Ѓѧpp)Tok)Ħ6b_a6CRp]m e=twh.$95Y PY9S35lG!{@6ppy/'$H}Ur'2 :>PW6'hJN7ZV>z#Z
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/7f/46cbc643f4b1e070489082025d2762482a16e0 and ./wordpress-3.4.2/.git/objects/7f/46cbc643f4b1e070489082025d2762482a16e0 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/7f/4d1359f8c7e1cae7f35473dc8e6f1b83781eb1 ./wordpress-3.4.2/.git/objects/7f/4d1359f8c7e1cae7f35473dc8e6f1b83781eb1
*** ./wordpress-3.4.1/.git/objects/7f/4d1359f8c7e1cae7f35473dc8e6f1b83781eb1 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/7f/4d1359f8c7e1cae7f35473dc8e6f1b83781eb1 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,4 ----
+ xOkAG[(
+ ƃzI6QjA)bVM6nYf'=xiDdF
+ ֡/h?4!pxdyp7Xs:{ 9x
+ ^Mo , R0v@3{ ;
BҦѴM_"5b>G˗oZq,ktJFU$ETDLD^tӤON&vy2Teҙ&' v-ͻ37.j
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/7f/a0c2a2ea81f2fb3d5fabc607a08d50a4906d5d and ./wordpress-3.4.2/.git/objects/7f/a0c2a2ea81f2fb3d5fabc607a08d50a4906d5d differ
Binary files ./wordpress-3.4.1/.git/objects/7f/a8606c1c1a3ce26a39b584ad0fdd1a4c5d5022 and ./wordpress-3.4.2/.git/objects/7f/a8606c1c1a3ce26a39b584ad0fdd1a4c5d5022 differ
Binary files ./wordpress-3.4.1/.git/objects/7f/c3967b6a74ff7132f5849ce8942a8522435141 and ./wordpress-3.4.2/.git/objects/7f/c3967b6a74ff7132f5849ce8942a8522435141 differ
Binary files ./wordpress-3.4.1/.git/objects/7f/c57f2bc2d63a3ad6fbf98b663f336539f011ec and ./wordpress-3.4.2/.git/objects/7f/c57f2bc2d63a3ad6fbf98b663f336539f011ec differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/7f/dc4a3ed711e509359d38a60edd2edf05806fa1 ./wordpress-3.4.2/.git/objects/7f/dc4a3ed711e509359d38a60edd2edf05806fa1
*** ./wordpress-3.4.1/.git/objects/7f/dc4a3ed711e509359d38a60edd2edf05806fa1 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/7f/dc4a3ed711e509359d38a60edd2edf05806fa1 2012-09-10 14:16:45.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ x+)JMU0b040031Q(/IK/M*fԯO^f38,0{lR ϖ[=0/l7q?M%
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/80/24d4807622702e0e65f4234d1822be138bc332 and ./wordpress-3.4.2/.git/objects/80/24d4807622702e0e65f4234d1822be138bc332 differ
Binary files ./wordpress-3.4.1/.git/objects/80/3ad630c015d80b318f7b2144aba0b583efc1b6 and ./wordpress-3.4.2/.git/objects/80/3ad630c015d80b318f7b2144aba0b583efc1b6 differ
Binary files ./wordpress-3.4.1/.git/objects/80/483876778125750c0136dedfadbfb0290c55c0 and ./wordpress-3.4.2/.git/objects/80/483876778125750c0136dedfadbfb0290c55c0 differ
Binary files ./wordpress-3.4.1/.git/objects/80/49099e6c6aa14b04b7caf37f18a780c1d4bff1 and ./wordpress-3.4.2/.git/objects/80/49099e6c6aa14b04b7caf37f18a780c1d4bff1 differ
Binary files ./wordpress-3.4.1/.git/objects/80/5fe984d894fbc2d1df187ca02f24c439c371e9 and ./wordpress-3.4.2/.git/objects/80/5fe984d894fbc2d1df187ca02f24c439c371e9 differ
Binary files ./wordpress-3.4.1/.git/objects/80/865493c4ce6ab7e0e9c886577e19bb9d5f53b6 and ./wordpress-3.4.2/.git/objects/80/865493c4ce6ab7e0e9c886577e19bb9d5f53b6 differ
Binary files ./wordpress-3.4.1/.git/objects/80/c251fdd75c5a9a960b87e4120509a1100e131b and ./wordpress-3.4.2/.git/objects/80/c251fdd75c5a9a960b87e4120509a1100e131b differ
Binary files ./wordpress-3.4.1/.git/objects/81/2b9098f3dce0d4b5d9acf55f4495a3a329f719 and ./wordpress-3.4.2/.git/objects/81/2b9098f3dce0d4b5d9acf55f4495a3a329f719 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/81/80a8cf49078fd4882a4821a5081b92d893bf3f ./wordpress-3.4.2/.git/objects/81/80a8cf49078fd4882a4821a5081b92d893bf3f
*** ./wordpress-3.4.1/.git/objects/81/80a8cf49078fd4882a4821a5081b92d893bf3f 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/81/80a8cf49078fd4882a4821a5081b92d893bf3f 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,4 ----
+ xUM6UEdכZ @Q,z$hidIVmCIQ37nduw7;z`Ugz;24:29cg'N١}G}hx= g#lTaayj2q=˖=o&Z{nT4u `jW%Y8CI>DkԜ@׀#*$Ќ#io?agpQj0۴Ap=㕌:x
ugj?Qpǚo~AS4;@?,H+ꚖY/-⫵[*Ymwb4}H}9?[*^t<#8ҳvx#0~AZC_g.뮨($L<):+@pBi1*^cRaiUw!zu pXk3ߛ-?RZR|1
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/81/947af5a833c3a5d4acef17bc93b4a682f8a9c9 and ./wordpress-3.4.2/.git/objects/81/947af5a833c3a5d4acef17bc93b4a682f8a9c9 differ
Binary files ./wordpress-3.4.1/.git/objects/81/b1d6a01e134a01a0458dbb086957d691d5d0a5 and ./wordpress-3.4.2/.git/objects/81/b1d6a01e134a01a0458dbb086957d691d5d0a5 differ
Binary files ./wordpress-3.4.1/.git/objects/81/cefe5736c0c4158d2ac8e2ab397c83e58a6611 and ./wordpress-3.4.2/.git/objects/81/cefe5736c0c4158d2ac8e2ab397c83e58a6611 differ
Binary files ./wordpress-3.4.1/.git/objects/81/da151f6ef1b1b755a0c30aa196a6c85fd652c6 and ./wordpress-3.4.2/.git/objects/81/da151f6ef1b1b755a0c30aa196a6c85fd652c6 differ
Binary files ./wordpress-3.4.1/.git/objects/81/e51131afbadfe76a8cb6112a6fdbf0774b59a3 and ./wordpress-3.4.2/.git/objects/81/e51131afbadfe76a8cb6112a6fdbf0774b59a3 differ
Binary files ./wordpress-3.4.1/.git/objects/82/290f48334c81272ff5991962951758137a08ba and ./wordpress-3.4.2/.git/objects/82/290f48334c81272ff5991962951758137a08ba differ
Binary files ./wordpress-3.4.1/.git/objects/82/48e3a64f69653647c6e0c379d16d4be1775169 and ./wordpress-3.4.2/.git/objects/82/48e3a64f69653647c6e0c379d16d4be1775169 differ
Binary files ./wordpress-3.4.1/.git/objects/82/4d85a316c6980aa1064c95e55cebd28aafb54c and ./wordpress-3.4.2/.git/objects/82/4d85a316c6980aa1064c95e55cebd28aafb54c differ
Binary files ./wordpress-3.4.1/.git/objects/82/52ca9e24afc53759a251575d49923531b0e06b and ./wordpress-3.4.2/.git/objects/82/52ca9e24afc53759a251575d49923531b0e06b differ
Binary files ./wordpress-3.4.1/.git/objects/82/550734ae4ce806657867e8827ff7c27a6c08b8 and ./wordpress-3.4.2/.git/objects/82/550734ae4ce806657867e8827ff7c27a6c08b8 differ
Binary files ./wordpress-3.4.1/.git/objects/82/57b5187b78ccc0e3d4ff5d7cdc70beee55e554 and ./wordpress-3.4.2/.git/objects/82/57b5187b78ccc0e3d4ff5d7cdc70beee55e554 differ
Binary files ./wordpress-3.4.1/.git/objects/82/7556ee3065c82a0bbb99409840a85fa26d755e and ./wordpress-3.4.2/.git/objects/82/7556ee3065c82a0bbb99409840a85fa26d755e differ
Binary files ./wordpress-3.4.1/.git/objects/82/b0b7d155bb6af0b773b15cbc79812492683761 and ./wordpress-3.4.2/.git/objects/82/b0b7d155bb6af0b773b15cbc79812492683761 differ
Binary files ./wordpress-3.4.1/.git/objects/82/b6b84db2b7e1b5a15be94e233766e44351ed62 and ./wordpress-3.4.2/.git/objects/82/b6b84db2b7e1b5a15be94e233766e44351ed62 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/82/caa3ad08fcc5906c70e030f26cb8f35819d79a ./wordpress-3.4.2/.git/objects/82/caa3ad08fcc5906c70e030f26cb8f35819d79a
*** ./wordpress-3.4.1/.git/objects/82/caa3ad08fcc5906c70e030f26cb8f35819d79a 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/82/caa3ad08fcc5906c70e030f26cb8f35819d79a 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ xUN0iS%) $Z@t/؎sD3vdn{uvs>N=#9 sf`=M.qo?okmf'z\uw%]@2* ;SeM1,Qb'0J+5H[wK4/0kgYjkkP]>*Let(>-s-c:#Ʉ+C[%+2_Vک6|ɿg',5Vl,'pށZIX8fqj2qs94˨!RHl[úA(iG-N߿iOh3J>?p
MՏc 2'3({*NYkGZ"һ]yo|~tuS[OLh;$'Zh+ls}yPC8K10xxƔlDt
x( IPIw|E>iRN4'dfj-k}FVRWZ
71**:ПQ,cZ$.ѫU& 04
+ {eEhPmk紝ouSQlzSҘH1g㛟Q^-n[jyYehE?|aSO?s"TCz gI|dh-_(齽KT&v"`Cvʷ:R{瞸Q'@
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/95/b0cb30e92491c0ed7fabb89c4e8416622dc73c and ./wordpress-3.4.2/.git/objects/95/b0cb30e92491c0ed7fabb89c4e8416622dc73c differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/95/e7b32a4ae89140c2fa2001deb443dc402f1d5e ./wordpress-3.4.2/.git/objects/95/e7b32a4ae89140c2fa2001deb443dc402f1d5e
*** ./wordpress-3.4.1/.git/objects/95/e7b32a4ae89140c2fa2001deb443dc402f1d5e 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/95/e7b32a4ae89140c2fa2001deb443dc402f1d5e 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,5 ----
+ xT]hY&"Z˸iˤVe&!ZcEdrӎN'LReOO
+ "( ݙ4腹;9hUZb]LBqfff|GVW.A+T*NzNJi]ui~?-xB
+ FiC`xNo.7 Hnnixu/g@MIx0#I
+ ToѪS%Mb7>OsxḒ-XJ1GHjL[=)WmceTI{_}ۉ;fӲ?beY8u.fw3:d=2f`?Tؑ#n#'SrZg}!V㣩l2O\vQ[6MCi$ .*(eb*$Vi!8esy9O{bA/T[rƽWfjdP/5
c|uUWO5#J뽦g-Os'qQW^aȥ$9,[3ӾDOxp6\8܍^tqu?Wm7^&
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/95/f0aa091d3b09eed515b93d23ccb5bcf0fc1fb4 and ./wordpress-3.4.2/.git/objects/95/f0aa091d3b09eed515b93d23ccb5bcf0fc1fb4 differ
Binary files ./wordpress-3.4.1/.git/objects/96/0bbb6a57d9830f3b402c39d505b531be857fab and ./wordpress-3.4.2/.git/objects/96/0bbb6a57d9830f3b402c39d505b531be857fab differ
Binary files ./wordpress-3.4.1/.git/objects/96/6b1c1aa559aad402661e8e18cfca9b02da0a5a and ./wordpress-3.4.2/.git/objects/96/6b1c1aa559aad402661e8e18cfca9b02da0a5a differ
Binary files ./wordpress-3.4.1/.git/objects/96/b76a09e2c21a5a86abc226580078417c6e5a83 and ./wordpress-3.4.2/.git/objects/96/b76a09e2c21a5a86abc226580078417c6e5a83 differ
Binary files ./wordpress-3.4.1/.git/objects/97/3f17849cd81459d82ae4b2603a0a312b4928e1 and ./wordpress-3.4.2/.git/objects/97/3f17849cd81459d82ae4b2603a0a312b4928e1 differ
Binary files ./wordpress-3.4.1/.git/objects/97/b343d98c744561e1acb8f98d2b1a24a5bc0da2 and ./wordpress-3.4.2/.git/objects/97/b343d98c744561e1acb8f98d2b1a24a5bc0da2 differ
Binary files ./wordpress-3.4.1/.git/objects/98/1b1af593600b94c253616ff94efff2ebbe931b and ./wordpress-3.4.2/.git/objects/98/1b1af593600b94c253616ff94efff2ebbe931b differ
Binary files ./wordpress-3.4.1/.git/objects/98/246c3fbfb6727c4dbc91d3d772dbf8153a1b88 and ./wordpress-3.4.2/.git/objects/98/246c3fbfb6727c4dbc91d3d772dbf8153a1b88 differ
Binary files ./wordpress-3.4.1/.git/objects/98/504ee4070c640e95c42f166d1d25baa7a4392d and ./wordpress-3.4.2/.git/objects/98/504ee4070c640e95c42f166d1d25baa7a4392d differ
Binary files ./wordpress-3.4.1/.git/objects/98/8f6b22c6505aa02761653112e7bbb1e69cb010 and ./wordpress-3.4.2/.git/objects/98/8f6b22c6505aa02761653112e7bbb1e69cb010 differ
Binary files ./wordpress-3.4.1/.git/objects/98/e32a5937afac3673ee669d874f7c8a22f4cdb5 and ./wordpress-3.4.2/.git/objects/98/e32a5937afac3673ee669d874f7c8a22f4cdb5 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/98/ec743de589483ca707744ed830fcb568e99ba4 ./wordpress-3.4.2/.git/objects/98/ec743de589483ca707744ed830fcb568e99ba4
*** ./wordpress-3.4.1/.git/objects/98/ec743de589483ca707744ed830fcb568e99ba4 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/98/ec743de589483ca707744ed830fcb568e99ba4 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,4 ----
+ xUsDW,S9ȿBq0@ZH!@/t:mt'ݷU\&g\|U-+x|1Vi]Hx#Vr
+ 惕Ҷ[p%M檜RĘaRL T[Uk+c
2XHR\j:/A\xS0ѓ6KD|0ƃ4R!XHu j%t|pty}4˄xErcXSLLk~= +U2A0O~~/E2[,ŪTUlo^W?O?o~-z<.`¹ g b$tEu(Ƃ`V(j18gb|N3я0|ZgJDrm1:6q0P\$i7k
A$sֺ*0w>>ܟ 0#DLTi}CudzaյlH.z*PK%{1qWV"N K@)"yJ'0Cb=&2hߚ%jxIN.Heb~AFriUxv0v҈
+ 4$cnaFݹKkppMoh;hlxy;䭇7pM7Vi{yZ,W|DlĜOs&ρ;r[ GaܿڝNr/"t]wԽ{m\j_Z
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/99/251dcfe40face1c7763573d8979dddada8de3c and ./wordpress-3.4.2/.git/objects/99/251dcfe40face1c7763573d8979dddada8de3c differ
Binary files ./wordpress-3.4.1/.git/objects/99/267ef7b65e1f867d53e8b15be2b0d5781c959f and ./wordpress-3.4.2/.git/objects/99/267ef7b65e1f867d53e8b15be2b0d5781c959f differ
Binary files ./wordpress-3.4.1/.git/objects/99/39ecba5ad2f41918ba124f087c9ddd61aeae5e and ./wordpress-3.4.2/.git/objects/99/39ecba5ad2f41918ba124f087c9ddd61aeae5e differ
Binary files ./wordpress-3.4.1/.git/objects/99/5148cbd6a460454792882f16a24332ce92c875 and ./wordpress-3.4.2/.git/objects/99/5148cbd6a460454792882f16a24332ce92c875 differ
Binary files ./wordpress-3.4.1/.git/objects/99/68662e70551a610439e594790f52827a7638a4 and ./wordpress-3.4.2/.git/objects/99/68662e70551a610439e594790f52827a7638a4 differ
Binary files ./wordpress-3.4.1/.git/objects/99/70de267bec887f26d35aad2fda49aa156ca4a1 and ./wordpress-3.4.2/.git/objects/99/70de267bec887f26d35aad2fda49aa156ca4a1 differ
Binary files ./wordpress-3.4.1/.git/objects/99/7dbb134ae6a70cf64f616dae94ebe052fb0a21 and ./wordpress-3.4.2/.git/objects/99/7dbb134ae6a70cf64f616dae94ebe052fb0a21 differ
Binary files ./wordpress-3.4.1/.git/objects/99/b477481721e0d127fe98012cb3771772792de6 and ./wordpress-3.4.2/.git/objects/99/b477481721e0d127fe98012cb3771772792de6 differ
Binary files ./wordpress-3.4.1/.git/objects/99/c45cef250a0546451e8d797a1d49ec65e7c952 and ./wordpress-3.4.2/.git/objects/99/c45cef250a0546451e8d797a1d49ec65e7c952 differ
Binary files ./wordpress-3.4.1/.git/objects/9a/6665c5be2e7d10fd5b3a131f99a3ac0fa6445c and ./wordpress-3.4.2/.git/objects/9a/6665c5be2e7d10fd5b3a131f99a3ac0fa6445c differ
Binary files ./wordpress-3.4.1/.git/objects/9a/70b04576e690c4c02f936375036c196201eac0 and ./wordpress-3.4.2/.git/objects/9a/70b04576e690c4c02f936375036c196201eac0 differ
Binary files ./wordpress-3.4.1/.git/objects/9a/e83f08debfdef4d617cbd5cf2166096c782910 and ./wordpress-3.4.2/.git/objects/9a/e83f08debfdef4d617cbd5cf2166096c782910 differ
Binary files ./wordpress-3.4.1/.git/objects/9a/e96482d25175133acf372abe72712a3f8fabd3 and ./wordpress-3.4.2/.git/objects/9a/e96482d25175133acf372abe72712a3f8fabd3 differ
Binary files ./wordpress-3.4.1/.git/objects/9b/2d028098e2627460aa1e07f73cb469f08fed2a and ./wordpress-3.4.2/.git/objects/9b/2d028098e2627460aa1e07f73cb469f08fed2a differ
Binary files ./wordpress-3.4.1/.git/objects/9b/3624af7fdf1f46f86e8b838984e8765ea6741a and ./wordpress-3.4.2/.git/objects/9b/3624af7fdf1f46f86e8b838984e8765ea6741a differ
Binary files ./wordpress-3.4.1/.git/objects/9b/5c68c5a15d1007a1dd48cd0f261da079769e4f and ./wordpress-3.4.2/.git/objects/9b/5c68c5a15d1007a1dd48cd0f261da079769e4f differ
Binary files ./wordpress-3.4.1/.git/objects/9b/92578fb5867463d5a88a0d8a072a62e772749a and ./wordpress-3.4.2/.git/objects/9b/92578fb5867463d5a88a0d8a072a62e772749a differ
Binary files ./wordpress-3.4.1/.git/objects/9b/998ff2a3d582b8a3dadff670db2637fde1d795 and ./wordpress-3.4.2/.git/objects/9b/998ff2a3d582b8a3dadff670db2637fde1d795 differ
Binary files ./wordpress-3.4.1/.git/objects/9b/9c43f9d6cf0e35c2ff8c1d4a8ce0da4d7f3f46 and ./wordpress-3.4.2/.git/objects/9b/9c43f9d6cf0e35c2ff8c1d4a8ce0da4d7f3f46 differ
Binary files ./wordpress-3.4.1/.git/objects/9c/36d17bc56196fcb5495be74b6c4559012ada00 and ./wordpress-3.4.2/.git/objects/9c/36d17bc56196fcb5495be74b6c4559012ada00 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/9c/702c659561e06e28814e5084c2d89fad423aab ./wordpress-3.4.2/.git/objects/9c/702c659561e06e28814e5084c2d89fad423aab
*** ./wordpress-3.4.1/.git/objects/9c/702c659561e06e28814e5084c2d89fad423aab 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/9c/702c659561e06e28814e5084c2d89fad423aab 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,5 ----
+ xRMO0kK!(qX q[C;ƮF6}73ʸ]MokBgY:@s8ăxx\ݿjKZӣ~GIq.:Ez^Y_o~^&rit6X|52z,nuz^Qׁ@Di]SˣLYL{ekŞgl2far
&pE#p@IIF7$`>a2MwiwϠĴtl ;-1KΩCAN2#lj]rc[
y]+BDJi+Ƣb[
+ &]F'|NIģrRq =iX
+ *%
+
+ bAGTme}D6T32+w۸
+ KT!1k?d0kTU٠vR꽊=i[!p:HR
/Ԏ
+
yӚm#8vlε%
sthgC5@f{ief]2}MtAE!P!r6nֻ#$!ZGsDkAҫAN}8#:_'\UKY֖ ]0pÄC3zqKȷm8
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/9f/f24384ccd5682c0361789d8819f373da65f56f and ./wordpress-3.4.2/.git/objects/9f/f24384ccd5682c0361789d8819f373da65f56f differ
Binary files ./wordpress-3.4.1/.git/objects/a0/0467c297fa6470ecc57f0810611be777497415 and ./wordpress-3.4.2/.git/objects/a0/0467c297fa6470ecc57f0810611be777497415 differ
Binary files ./wordpress-3.4.1/.git/objects/a0/14a515fccf6983f3554d58194564284c10cd15 and ./wordpress-3.4.2/.git/objects/a0/14a515fccf6983f3554d58194564284c10cd15 differ
Binary files ./wordpress-3.4.1/.git/objects/a0/36f28553c8289e4f94b20bfd135886adebd8a7 and ./wordpress-3.4.2/.git/objects/a0/36f28553c8289e4f94b20bfd135886adebd8a7 differ
Binary files ./wordpress-3.4.1/.git/objects/a0/6d22a052893dce15ff64dce3d26a740485aaee and ./wordpress-3.4.2/.git/objects/a0/6d22a052893dce15ff64dce3d26a740485aaee differ
Binary files ./wordpress-3.4.1/.git/objects/a0/7421619ed014941dea9064271e9e98735be1fe and ./wordpress-3.4.2/.git/objects/a0/7421619ed014941dea9064271e9e98735be1fe differ
Binary files ./wordpress-3.4.1/.git/objects/a0/d4ef2ae38b8a0be50b61bcaae842874e414dbc and ./wordpress-3.4.2/.git/objects/a0/d4ef2ae38b8a0be50b61bcaae842874e414dbc differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/a0/dea11fb18d308b7a5951ad720b260da39ed87e ./wordpress-3.4.2/.git/objects/a0/dea11fb18d308b7a5951ad720b260da39ed87e
*** ./wordpress-3.4.1/.git/objects/a0/dea11fb18d308b7a5951ad720b260da39ed87e 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/a0/dea11fb18d308b7a5951ad720b260da39ed87e 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ x]1O0Y_(Cڈ$0tjڲ!TrKcQ,QZ]Y þ#k U#p u|!yE);ȷoc!㯇=Q6Qne:r6IfJ3kP:ןc6g8#q4ΖGik{x;~Q
+ !üaԙmrPMt8ӉװQ[t0-[>A+3 WE1͚0:N)"XCr4J洭AR0zI=B/$Z
\ No newline at end of file
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/a0/ffabf9fcd68a22663e18b2cff36bb56e2cef44 ./wordpress-3.4.2/.git/objects/a0/ffabf9fcd68a22663e18b2cff36bb56e2cef44
*** ./wordpress-3.4.1/.git/objects/a0/ffabf9fcd68a22663e18b2cff36bb56e2cef44 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/a0/ffabf9fcd68a22663e18b2cff36bb56e2cef44 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ xU
+ 0ߖtPAAApI߶oXn>tAE!P!r6nֻ#$!ZGsDkAҫAN}8#:_'\UKY֖ ]0pÄC3zqKȷm8
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/a1/1d469f8bfd6b6d89890642fc5acf803205eb8e and ./wordpress-3.4.2/.git/objects/a1/1d469f8bfd6b6d89890642fc5acf803205eb8e differ
Binary files ./wordpress-3.4.1/.git/objects/a1/579c85f22760df55dc01ffa04c2a00aca7917a and ./wordpress-3.4.2/.git/objects/a1/579c85f22760df55dc01ffa04c2a00aca7917a differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/a1/5a4c3fd31f95f26a2d473ad4d9ee89928a0cfb ./wordpress-3.4.2/.git/objects/a1/5a4c3fd31f95f26a2d473ad4d9ee89928a0cfb
*** ./wordpress-3.4.1/.git/objects/a1/5a4c3fd31f95f26a2d473ad4d9ee89928a0cfb 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/a1/5a4c3fd31f95f26a2d473ad4d9ee89928a0cfb 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ xUN0NMrpʭH8c[X5Q_;m@wwfܮWm(4xtpK 2F;㘂I,8tV7$$؏@18mGNt>6NܪūgT}OSa۹WJnnUV'YΖ˶NR6I9du.Bd
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/a1/61c993c86fc958b1d1453bf087e4be0d7fe08f and ./wordpress-3.4.2/.git/objects/a1/61c993c86fc958b1d1453bf087e4be0d7fe08f differ
Binary files ./wordpress-3.4.1/.git/objects/a1/a5a5b142a09a5f88ab1abf462e2564254cac12 and ./wordpress-3.4.2/.git/objects/a1/a5a5b142a09a5f88ab1abf462e2564254cac12 differ
Binary files ./wordpress-3.4.1/.git/objects/a1/c55630b22d1e75eba633cb88df7dc2514039b6 and ./wordpress-3.4.2/.git/objects/a1/c55630b22d1e75eba633cb88df7dc2514039b6 differ
Binary files ./wordpress-3.4.1/.git/objects/a1/fb4cd09e0620da34409bd46e7732f111c39e11 and ./wordpress-3.4.2/.git/objects/a1/fb4cd09e0620da34409bd46e7732f111c39e11 differ
Binary files ./wordpress-3.4.1/.git/objects/a2/0bde3db42fe87dc7ea9e2d1d97709a954070d5 and ./wordpress-3.4.2/.git/objects/a2/0bde3db42fe87dc7ea9e2d1d97709a954070d5 differ
Binary files ./wordpress-3.4.1/.git/objects/a2/86eb98e662282c1b16d78b587dca1db2b75fc1 and ./wordpress-3.4.2/.git/objects/a2/86eb98e662282c1b16d78b587dca1db2b75fc1 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/a2/d3f1ae02e78f57782dc02304767a642779fa8b ./wordpress-3.4.2/.git/objects/a2/d3f1ae02e78f57782dc02304767a642779fa8b
*** ./wordpress-3.4.1/.git/objects/a2/d3f1ae02e78f57782dc02304767a642779fa8b 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/a2/d3f1ae02e78f57782dc02304767a642779fa8b 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,4 ----
+ xT]k0k+hm4C;c
QC,]jeHrilIWsΔl~7{Td_*RZx_Q4ͤOFbC]XG^F%u >zd;R,Od>lJTu5ytv`v:gwtDŀ??șbNIL2#hNBj>,?(Ubm4,A2M\H!@/QQ[JPꬔwF{Z$g`KSz!wCY,|Lεz@eV
,ϖ>k+(-VXRRRRÑo_m[TDQSf'dJ'l[ƊtAٞNSDgor
+ 9:2!WlL2㋐,~-ӵ5
>
+ _QF
+ _/IAacorVJu#\^h*Pmtp ^W-%dJM%jxL^A[_3
aGV{xhJ Vy(JvLx|mG};\4ұeoz,^] Y#Q3w0j'
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/a3/331da95078f8ce149330b44267af7345990c2c and ./wordpress-3.4.2/.git/objects/a3/331da95078f8ce149330b44267af7345990c2c differ
Binary files ./wordpress-3.4.1/.git/objects/a3/35aecbf521ad2f38417db6d24bdbf0600833ed and ./wordpress-3.4.2/.git/objects/a3/35aecbf521ad2f38417db6d24bdbf0600833ed differ
Binary files ./wordpress-3.4.1/.git/objects/a3/5a2802e78e643a3ca9a0ea33749f9854d6f7cb and ./wordpress-3.4.2/.git/objects/a3/5a2802e78e643a3ca9a0ea33749f9854d6f7cb differ
Binary files ./wordpress-3.4.1/.git/objects/a3/70aaf6a063859e911b6fa005b8c2d379f601b3 and ./wordpress-3.4.2/.git/objects/a3/70aaf6a063859e911b6fa005b8c2d379f601b3 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/a3/be929ac7cc32f16535f4e59959f32b20af4570 ./wordpress-3.4.2/.git/objects/a3/be929ac7cc32f16535f4e59959f32b20af4570
*** ./wordpress-3.4.1/.git/objects/a3/be929ac7cc32f16535f4e59959f32b20af4570 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/a3/be929ac7cc32f16535f4e59959f32b20af4570 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,4 ----
+ x==0`[Hp$6(m-IpOa7{ѵD
+ R@'Y
+ u$gkFfړCc%
i-Ns'+r9]&s
+ A+9)`1.UXxz|SE)
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/a3/f7cfe27021ada51cc177efe17aa0f450a22f12 and ./wordpress-3.4.2/.git/objects/a3/f7cfe27021ada51cc177efe17aa0f450a22f12 differ
Binary files ./wordpress-3.4.1/.git/objects/a4/0ae0d7e8c870d3675c8975e3a6bb0a059f11ff and ./wordpress-3.4.2/.git/objects/a4/0ae0d7e8c870d3675c8975e3a6bb0a059f11ff differ
Binary files ./wordpress-3.4.1/.git/objects/a4/1222687508d27e34408a55f758ee5a7c7e87b5 and ./wordpress-3.4.2/.git/objects/a4/1222687508d27e34408a55f758ee5a7c7e87b5 differ
Binary files ./wordpress-3.4.1/.git/objects/a4/385566e661e8df56312c09ed50d1f952e887ff and ./wordpress-3.4.2/.git/objects/a4/385566e661e8df56312c09ed50d1f952e887ff differ
Binary files ./wordpress-3.4.1/.git/objects/a4/5f1c9b60afe71fa11e68f2e389cc031ff6c62e and ./wordpress-3.4.2/.git/objects/a4/5f1c9b60afe71fa11e68f2e389cc031ff6c62e differ
Binary files ./wordpress-3.4.1/.git/objects/a4/6f6f89beefdd2423b394529857781f0c0e83ba and ./wordpress-3.4.2/.git/objects/a4/6f6f89beefdd2423b394529857781f0c0e83ba differ
Binary files ./wordpress-3.4.1/.git/objects/a4/7dd71c7224e24aed63949f18c4b6898a4be882 and ./wordpress-3.4.2/.git/objects/a4/7dd71c7224e24aed63949f18c4b6898a4be882 differ
Binary files ./wordpress-3.4.1/.git/objects/a4/c6e9d4eb8a8d65e19e9aa3fbbd23954f147c38 and ./wordpress-3.4.2/.git/objects/a4/c6e9d4eb8a8d65e19e9aa3fbbd23954f147c38 differ
Binary files ./wordpress-3.4.1/.git/objects/a4/d600aa6b726f2ea6b31aed6660b252ce981783 and ./wordpress-3.4.2/.git/objects/a4/d600aa6b726f2ea6b31aed6660b252ce981783 differ
Binary files ./wordpress-3.4.1/.git/objects/a5/07c4816cfd7a5368880248f01d8eaa3569e71c and ./wordpress-3.4.2/.git/objects/a5/07c4816cfd7a5368880248f01d8eaa3569e71c differ
Binary files ./wordpress-3.4.1/.git/objects/a5/24b1ac39c2c2ceecf87477d22a7188b81e56df and ./wordpress-3.4.2/.git/objects/a5/24b1ac39c2c2ceecf87477d22a7188b81e56df differ
Binary files ./wordpress-3.4.1/.git/objects/a5/5373286748b33023e272191331d180ae7db9e7 and ./wordpress-3.4.2/.git/objects/a5/5373286748b33023e272191331d180ae7db9e7 differ
Binary files ./wordpress-3.4.1/.git/objects/a5/5e8e79cf7327fd06770882050251c9c8814333 and ./wordpress-3.4.2/.git/objects/a5/5e8e79cf7327fd06770882050251c9c8814333 differ
Binary files ./wordpress-3.4.1/.git/objects/a5/a29822bc6d2abcbda3bf4e70a78e0d0377b3f7 and ./wordpress-3.4.2/.git/objects/a5/a29822bc6d2abcbda3bf4e70a78e0d0377b3f7 differ
Binary files ./wordpress-3.4.1/.git/objects/a5/a6a2d4230db29e322879f5f4a1f269611cec0c and ./wordpress-3.4.2/.git/objects/a5/a6a2d4230db29e322879f5f4a1f269611cec0c differ
Binary files ./wordpress-3.4.1/.git/objects/a5/ab65c168f0a868142fd3f2b32247079124bd3f and ./wordpress-3.4.2/.git/objects/a5/ab65c168f0a868142fd3f2b32247079124bd3f differ
Binary files ./wordpress-3.4.1/.git/objects/a5/c71943b779722e16ffa051948c6c8db9fc5e7a and ./wordpress-3.4.2/.git/objects/a5/c71943b779722e16ffa051948c6c8db9fc5e7a differ
Binary files ./wordpress-3.4.1/.git/objects/a5/dbc8977258a7f764043ced0bb62c292a7f3538 and ./wordpress-3.4.2/.git/objects/a5/dbc8977258a7f764043ced0bb62c292a7f3538 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/a5/dbc9899f152f4e274ecc49a3e70fbab14ac8e4 ./wordpress-3.4.2/.git/objects/a5/dbc9899f152f4e274ecc49a3e70fbab14ac8e4
*** ./wordpress-3.4.1/.git/objects/a5/dbc9899f152f4e274ecc49a3e70fbab14ac8e4 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/a5/dbc9899f152f4e274ecc49a3e70fbab14ac8e4 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,3 ----
+ xU0D
+ RD@"FĈ&%N$EbzR7w^Te)k0'"d
!u6DhɁGgzp>aF/lBaPh_j]kkLs%u8_
+ Hslރes3BVcC(`(>HN
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/a6/125b9ca35a4475d3b1b643eedf88b09f20c06a and ./wordpress-3.4.2/.git/objects/a6/125b9ca35a4475d3b1b643eedf88b09f20c06a differ
Binary files ./wordpress-3.4.1/.git/objects/a6/155ff122140ed71244da90b467992336c999aa and ./wordpress-3.4.2/.git/objects/a6/155ff122140ed71244da90b467992336c999aa differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/a6/1d56d44f83e095248ebf9cf28d0fd6b3060889 ./wordpress-3.4.2/.git/objects/a6/1d56d44f83e095248ebf9cf28d0fd6b3060889
*** ./wordpress-3.4.1/.git/objects/a6/1d56d44f83e095248ebf9cf28d0fd6b3060889 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/a6/1d56d44f83e095248ebf9cf28d0fd6b3060889 2012-09-10 14:16:45.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ x+)JMU064`040031QHI-*KLcB{x]`eєO;}JKJrlx](sEl:Nq=_!D]I̢\2bQī_%hڍpeEyENLTie=5b
+ RFb~[g\B̪CֺnDc[th@U#3y'koΑ^sߋ+
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/a6/3857c43f6407e1d6f0f0ecb1035de3e24524ef and ./wordpress-3.4.2/.git/objects/a6/3857c43f6407e1d6f0f0ecb1035de3e24524ef differ
Binary files ./wordpress-3.4.1/.git/objects/a6/456f89dd86052508f8619cbf8070e89d54a755 and ./wordpress-3.4.2/.git/objects/a6/456f89dd86052508f8619cbf8070e89d54a755 differ
Binary files ./wordpress-3.4.1/.git/objects/a6/4a0bed51ecf8655d7d31b77ee436bf79df4dad and ./wordpress-3.4.2/.git/objects/a6/4a0bed51ecf8655d7d31b77ee436bf79df4dad differ
Binary files ./wordpress-3.4.1/.git/objects/a6/828b2dedfdcc35716b805314a970fad612080e and ./wordpress-3.4.2/.git/objects/a6/828b2dedfdcc35716b805314a970fad612080e differ
Binary files ./wordpress-3.4.1/.git/objects/a6/986d4fb57d5b455fac77151a2eb4d6ddb1aa6d and ./wordpress-3.4.2/.git/objects/a6/986d4fb57d5b455fac77151a2eb4d6ddb1aa6d differ
Binary files ./wordpress-3.4.1/.git/objects/a6/ce9c89c07218226e51ceb89e78191ec5baf657 and ./wordpress-3.4.2/.git/objects/a6/ce9c89c07218226e51ceb89e78191ec5baf657 differ
Binary files ./wordpress-3.4.1/.git/objects/a6/daed9d0b54a4b464948e83bab3dac595bca8cd and ./wordpress-3.4.2/.git/objects/a6/daed9d0b54a4b464948e83bab3dac595bca8cd differ
Binary files ./wordpress-3.4.1/.git/objects/a7/0638ab71ac31647efcb9207bd069d1efeae648 and ./wordpress-3.4.2/.git/objects/a7/0638ab71ac31647efcb9207bd069d1efeae648 differ
Binary files ./wordpress-3.4.1/.git/objects/a7/507719fc9580fdc7c4edf06eddd97ff471aa24 and ./wordpress-3.4.2/.git/objects/a7/507719fc9580fdc7c4edf06eddd97ff471aa24 differ
Binary files ./wordpress-3.4.1/.git/objects/a7/66222e8bb7a225df3c83724277a03dfb59de8b and ./wordpress-3.4.2/.git/objects/a7/66222e8bb7a225df3c83724277a03dfb59de8b differ
Binary files ./wordpress-3.4.1/.git/objects/a8/8a52f68bef050f63380f4f1b481d3756de693b and ./wordpress-3.4.2/.git/objects/a8/8a52f68bef050f63380f4f1b481d3756de693b differ
Binary files ./wordpress-3.4.1/.git/objects/a8/c4c6e67bc1b11c9fb7a971374459ad91ea364c and ./wordpress-3.4.2/.git/objects/a8/c4c6e67bc1b11c9fb7a971374459ad91ea364c differ
Binary files ./wordpress-3.4.1/.git/objects/a8/dac35c257b88344ee1ceddbfbe24b597d30f80 and ./wordpress-3.4.2/.git/objects/a8/dac35c257b88344ee1ceddbfbe24b597d30f80 differ
Binary files ./wordpress-3.4.1/.git/objects/a8/f1651d6fe490d82e0d01957684b02eef5f303c and ./wordpress-3.4.2/.git/objects/a8/f1651d6fe490d82e0d01957684b02eef5f303c differ
Binary files ./wordpress-3.4.1/.git/objects/a9/7167729034e7d5b7b0e761007194bb3fa78449 and ./wordpress-3.4.2/.git/objects/a9/7167729034e7d5b7b0e761007194bb3fa78449 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/a9/b809c2cace177e45e46bb8e17d6844cd3ebaa6 ./wordpress-3.4.2/.git/objects/a9/b809c2cace177e45e46bb8e17d6844cd3ebaa6
*** ./wordpress-3.4.1/.git/objects/a9/b809c2cace177e45e46bb8e17d6844cd3ebaa6 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/a9/b809c2cace177e45e46bb8e17d6844cd3ebaa6 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,3 ----
+ x}AO1{ܲDP*TTBHJڳԱWq
+ *w67qBG|{ϚNw2vzrdT-JBc 5W@d(<ߕ5X_$S
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/a9/de2654b96eff86eacacf05952eb8dd0ebf15b0 and ./wordpress-3.4.2/.git/objects/a9/de2654b96eff86eacacf05952eb8dd0ebf15b0 differ
Binary files ./wordpress-3.4.1/.git/objects/aa/30cde7590c9a1a7dffde73d229d7f8c3bcc22e and ./wordpress-3.4.2/.git/objects/aa/30cde7590c9a1a7dffde73d229d7f8c3bcc22e differ
Binary files ./wordpress-3.4.1/.git/objects/aa/87c6b840bfdbc87406642602c99b65d01892b8 and ./wordpress-3.4.2/.git/objects/aa/87c6b840bfdbc87406642602c99b65d01892b8 differ
Binary files ./wordpress-3.4.1/.git/objects/aa/9a3680467d115a2e67d886f35fb373d6a079a6 and ./wordpress-3.4.2/.git/objects/aa/9a3680467d115a2e67d886f35fb373d6a079a6 differ
Binary files ./wordpress-3.4.1/.git/objects/aa/aec7df1a482bcf67811f1188dbe4ce67ff52ae and ./wordpress-3.4.2/.git/objects/aa/aec7df1a482bcf67811f1188dbe4ce67ff52ae differ
Binary files ./wordpress-3.4.1/.git/objects/aa/b464d696ecc710fd948808c1281d42508b9ebc and ./wordpress-3.4.2/.git/objects/aa/b464d696ecc710fd948808c1281d42508b9ebc differ
Binary files ./wordpress-3.4.1/.git/objects/aa/c42f06b061746adf493f93c1289f4cdbebb919 and ./wordpress-3.4.2/.git/objects/aa/c42f06b061746adf493f93c1289f4cdbebb919 differ
Binary files ./wordpress-3.4.1/.git/objects/aa/dd0a3d3e94bad72a80eaccaf17a5e5a5b8ab28 and ./wordpress-3.4.2/.git/objects/aa/dd0a3d3e94bad72a80eaccaf17a5e5a5b8ab28 differ
Binary files ./wordpress-3.4.1/.git/objects/aa/f57aa9500bb4e3cf74c2fd34b5fa900e90cb50 and ./wordpress-3.4.2/.git/objects/aa/f57aa9500bb4e3cf74c2fd34b5fa900e90cb50 differ
Binary files ./wordpress-3.4.1/.git/objects/ab/16be088faaba1330c4ca0a2bdd855559b4dcf3 and ./wordpress-3.4.2/.git/objects/ab/16be088faaba1330c4ca0a2bdd855559b4dcf3 differ
Binary files ./wordpress-3.4.1/.git/objects/ab/1aa8e123fe263608d06126ce08c560ad419f97 and ./wordpress-3.4.2/.git/objects/ab/1aa8e123fe263608d06126ce08c560ad419f97 differ
Binary files ./wordpress-3.4.1/.git/objects/ab/2204d9ee742668bc1ce1a4f216ba3db2dc5798 and ./wordpress-3.4.2/.git/objects/ab/2204d9ee742668bc1ce1a4f216ba3db2dc5798 differ
Binary files ./wordpress-3.4.1/.git/objects/ab/2737c563e3b3af267719e2a10e60aa8ab22457 and ./wordpress-3.4.2/.git/objects/ab/2737c563e3b3af267719e2a10e60aa8ab22457 differ
Binary files ./wordpress-3.4.1/.git/objects/ab/50f2d887a0843b116ef598e5a005e5601d18d0 and ./wordpress-3.4.2/.git/objects/ab/50f2d887a0843b116ef598e5a005e5601d18d0 differ
Binary files ./wordpress-3.4.1/.git/objects/ab/9df79396928225902aff0fb606d4b3b279d1d4 and ./wordpress-3.4.2/.git/objects/ab/9df79396928225902aff0fb606d4b3b279d1d4 differ
Binary files ./wordpress-3.4.1/.git/objects/ab/acbd3a1f16891f58fdf4a689b14176397fc7b5 and ./wordpress-3.4.2/.git/objects/ab/acbd3a1f16891f58fdf4a689b14176397fc7b5 differ
Binary files ./wordpress-3.4.1/.git/objects/ab/bf6a025f007bbd5dd4832df8003ca0ad9cb6c7 and ./wordpress-3.4.2/.git/objects/ab/bf6a025f007bbd5dd4832df8003ca0ad9cb6c7 differ
Binary files ./wordpress-3.4.1/.git/objects/ac/308a99666fa90cecb9e141ad4d6d1774223d86 and ./wordpress-3.4.2/.git/objects/ac/308a99666fa90cecb9e141ad4d6d1774223d86 differ
Binary files ./wordpress-3.4.1/.git/objects/ac/752c9f4268cb815721cc759b2f10053b000932 and ./wordpress-3.4.2/.git/objects/ac/752c9f4268cb815721cc759b2f10053b000932 differ
Binary files ./wordpress-3.4.1/.git/objects/ac/7fb17a969297d240a570291aa75afbef83e1e9 and ./wordpress-3.4.2/.git/objects/ac/7fb17a969297d240a570291aa75afbef83e1e9 differ
Binary files ./wordpress-3.4.1/.git/objects/ac/cc851ed20510d6e4c1987b3f842bb911652afd and ./wordpress-3.4.2/.git/objects/ac/cc851ed20510d6e4c1987b3f842bb911652afd differ
Binary files ./wordpress-3.4.1/.git/objects/ac/d88a3397649fe013b2db9c75799019c2a86bb5 and ./wordpress-3.4.2/.git/objects/ac/d88a3397649fe013b2db9c75799019c2a86bb5 differ
Binary files ./wordpress-3.4.1/.git/objects/ac/df4085f3068c4c0a1d6855f4b80dae8bac3068 and ./wordpress-3.4.2/.git/objects/ac/df4085f3068c4c0a1d6855f4b80dae8bac3068 differ
Binary files ./wordpress-3.4.1/.git/objects/ad/07434df4633a744eade865a42ff57c9298044b and ./wordpress-3.4.2/.git/objects/ad/07434df4633a744eade865a42ff57c9298044b differ
Binary files ./wordpress-3.4.1/.git/objects/ad/261f97aecf7407bc4cca2b6aee92401eac3c91 and ./wordpress-3.4.2/.git/objects/ad/261f97aecf7407bc4cca2b6aee92401eac3c91 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/ad/5db1bf8169f99966c968432694f59e8aa0c3c5 ./wordpress-3.4.2/.git/objects/ad/5db1bf8169f99966c968432694f59e8aa0c3c5
*** ./wordpress-3.4.1/.git/objects/ad/5db1bf8169f99966c968432694f59e8aa0c3c5 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/ad/5db1bf8169f99966c968432694f59e8aa0c3c5 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ xuaK0溺niTl"~ˡ ]M^7-mjY{mLmw2;I2H'$n:,[cE(ksolW!;]$Epl4JL<8Hz8fr櫺q3rv$-J'䤓B
sROV>
Du%嵿ݸ#spdE Jٮ@du`f>FfD~XgO[UoWű
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/ad/7628320c3d15756c84794c8c0523f1072da640 and ./wordpress-3.4.2/.git/objects/ad/7628320c3d15756c84794c8c0523f1072da640 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/ad/873babb482538079aa839db4d3a646c0fabeac ./wordpress-3.4.2/.git/objects/ad/873babb482538079aa839db4d3a646c0fabeac
*** ./wordpress-3.4.1/.git/objects/ad/873babb482538079aa839db4d3a646c0fabeac 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/ad/873babb482538079aa839db4d3a646c0fabeac 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ x= ={ρ6z250vcI) ,/|3=rucM]35&\0eT /IYN<|sriBvC(3 xۤ<(lK(xxS@1:qL@%YdFDbߘj;}6E
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/ad/89000a7b0b7745df028a70b524ccd7a5bb2218 and ./wordpress-3.4.2/.git/objects/ad/89000a7b0b7745df028a70b524ccd7a5bb2218 differ
Binary files ./wordpress-3.4.1/.git/objects/ad/b8321475528961f8de6e483acd0322453217dc and ./wordpress-3.4.2/.git/objects/ad/b8321475528961f8de6e483acd0322453217dc differ
Binary files ./wordpress-3.4.1/.git/objects/ad/fdddccd7cac62a17d68873fa53c248bff8351a and ./wordpress-3.4.2/.git/objects/ad/fdddccd7cac62a17d68873fa53c248bff8351a differ
Binary files ./wordpress-3.4.1/.git/objects/ad/ff49795ab97a6d11d50f1874551a2debc94892 and ./wordpress-3.4.2/.git/objects/ad/ff49795ab97a6d11d50f1874551a2debc94892 differ
Binary files ./wordpress-3.4.1/.git/objects/ae/779c68039037645fd0dc7b0df3f187d7fad9ad and ./wordpress-3.4.2/.git/objects/ae/779c68039037645fd0dc7b0df3f187d7fad9ad differ
Binary files ./wordpress-3.4.1/.git/objects/ae/8a9f136c39f68e1054e4ee8e45f4522ff7d2bc and ./wordpress-3.4.2/.git/objects/ae/8a9f136c39f68e1054e4ee8e45f4522ff7d2bc differ
Binary files ./wordpress-3.4.1/.git/objects/ae/c75804fb74e4f742efa03fc126b6028bff66e2 and ./wordpress-3.4.2/.git/objects/ae/c75804fb74e4f742efa03fc126b6028bff66e2 differ
Binary files ./wordpress-3.4.1/.git/objects/ae/dbc111ea1455871e8b0dc700591c400ba3d4ee and ./wordpress-3.4.2/.git/objects/ae/dbc111ea1455871e8b0dc700591c400ba3d4ee differ
Binary files ./wordpress-3.4.1/.git/objects/af/1960e478d2e05cddd8c8dbfc399257c04ea925 and ./wordpress-3.4.2/.git/objects/af/1960e478d2e05cddd8c8dbfc399257c04ea925 differ
Binary files ./wordpress-3.4.1/.git/objects/af/67da9d78600bdf8fc2ad0fb36018af1fc6a209 and ./wordpress-3.4.2/.git/objects/af/67da9d78600bdf8fc2ad0fb36018af1fc6a209 differ
Binary files ./wordpress-3.4.1/.git/objects/af/7e8673ea5b5df2e76c6b4b790e09075a33dc49 and ./wordpress-3.4.2/.git/objects/af/7e8673ea5b5df2e76c6b4b790e09075a33dc49 differ
Binary files ./wordpress-3.4.1/.git/objects/b0/883a8cb7309236dc8d403bf87618be8478c17b and ./wordpress-3.4.2/.git/objects/b0/883a8cb7309236dc8d403bf87618be8478c17b differ
Binary files ./wordpress-3.4.1/.git/objects/b0/a4d406fb645fc8d7e6891ffd85d11b3e181030 and ./wordpress-3.4.2/.git/objects/b0/a4d406fb645fc8d7e6891ffd85d11b3e181030 differ
Binary files ./wordpress-3.4.1/.git/objects/b0/ae347e5e3b9d226eaf395e8d541311c85d5a22 and ./wordpress-3.4.2/.git/objects/b0/ae347e5e3b9d226eaf395e8d541311c85d5a22 differ
Binary files ./wordpress-3.4.1/.git/objects/b0/e120bd519ea1f35b350b79598be2c10b43321a and ./wordpress-3.4.2/.git/objects/b0/e120bd519ea1f35b350b79598be2c10b43321a differ
Binary files ./wordpress-3.4.1/.git/objects/b0/f0011d82213d9179632534b1ac36088d9d1f31 and ./wordpress-3.4.2/.git/objects/b0/f0011d82213d9179632534b1ac36088d9d1f31 differ
Binary files ./wordpress-3.4.1/.git/objects/b0/f72ffe9882d0b029927a99e5f24529046635cb and ./wordpress-3.4.2/.git/objects/b0/f72ffe9882d0b029927a99e5f24529046635cb differ
Binary files ./wordpress-3.4.1/.git/objects/b1/4c79ce2365480c253ae2c37f33fe581a5a071b and ./wordpress-3.4.2/.git/objects/b1/4c79ce2365480c253ae2c37f33fe581a5a071b differ
Binary files ./wordpress-3.4.1/.git/objects/b1/4f5586c4a129cc34fb458623ec0dfe0af327a7 and ./wordpress-3.4.2/.git/objects/b1/4f5586c4a129cc34fb458623ec0dfe0af327a7 differ
Binary files ./wordpress-3.4.1/.git/objects/b1/87de3570ce1f21c09e1c02d98abbda62af57a6 and ./wordpress-3.4.2/.git/objects/b1/87de3570ce1f21c09e1c02d98abbda62af57a6 differ
Binary files ./wordpress-3.4.1/.git/objects/b1/8e2abef586a67fd9a2392a2ffd80d88e5e4605 and ./wordpress-3.4.2/.git/objects/b1/8e2abef586a67fd9a2392a2ffd80d88e5e4605 differ
Binary files ./wordpress-3.4.1/.git/objects/b1/93af0dec506e1e9ae8920a53c279938e429ec6 and ./wordpress-3.4.2/.git/objects/b1/93af0dec506e1e9ae8920a53c279938e429ec6 differ
Binary files ./wordpress-3.4.1/.git/objects/b1/a377aba7784d3a0a0fabb4d22b8114cde25ace and ./wordpress-3.4.2/.git/objects/b1/a377aba7784d3a0a0fabb4d22b8114cde25ace differ
Binary files ./wordpress-3.4.1/.git/objects/b1/b7d5f866063dec4d6ba759337e6f69402483af and ./wordpress-3.4.2/.git/objects/b1/b7d5f866063dec4d6ba759337e6f69402483af differ
Binary files ./wordpress-3.4.1/.git/objects/b1/bbbc7b55dd11e7b932af649ace43b918ddd3fe and ./wordpress-3.4.2/.git/objects/b1/bbbc7b55dd11e7b932af649ace43b918ddd3fe differ
Binary files ./wordpress-3.4.1/.git/objects/b1/ca554422e4dc05517f6bb9b06cd835b1b874b3 and ./wordpress-3.4.2/.git/objects/b1/ca554422e4dc05517f6bb9b06cd835b1b874b3 differ
Binary files ./wordpress-3.4.1/.git/objects/b1/fb07f4b3b167988786e95e7c16663e04806264 and ./wordpress-3.4.2/.git/objects/b1/fb07f4b3b167988786e95e7c16663e04806264 differ
Binary files ./wordpress-3.4.1/.git/objects/b2/0c88f7d6a3d1ccbfab3015af0d6515592bf4d5 and ./wordpress-3.4.2/.git/objects/b2/0c88f7d6a3d1ccbfab3015af0d6515592bf4d5 differ
Binary files ./wordpress-3.4.1/.git/objects/b2/62e00830cf1c2c38677d4a3c61557eb4e78b46 and ./wordpress-3.4.2/.git/objects/b2/62e00830cf1c2c38677d4a3c61557eb4e78b46 differ
Binary files ./wordpress-3.4.1/.git/objects/b2/71867936fb0ea84d987ad8d49ed3151b7d0b2f and ./wordpress-3.4.2/.git/objects/b2/71867936fb0ea84d987ad8d49ed3151b7d0b2f differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/b2/c6177fbc3a286dddca599c47ff0be7d187c162 ./wordpress-3.4.2/.git/objects/b2/c6177fbc3a286dddca599c47ff0be7d187c162
*** ./wordpress-3.4.1/.git/objects/b2/c6177fbc3a286dddca599c47ff0be7d187c162 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/b2/c6177fbc3a286dddca599c47ff0be7d187c162 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ xeJ1ubnK[BZ[ ʹ
&1Z|{'鏨*39;eKOnn$E@FpH9&upo]{IwWkDxVL,:)qS{B
+ 2t/D. p*ІVbZo݅v0)nb
+ #Myo`&p>\K*n_7pH\M94cZWQt~)J+GV(FT(?8ӟK]ǎ8CɯYpׅtxk5|f~_pbtn1[ aI7
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/c3/eb59b3fca643a572a03ed9ab935b22dd7058e4 and ./wordpress-3.4.2/.git/objects/c3/eb59b3fca643a572a03ed9ab935b22dd7058e4 differ
Binary files ./wordpress-3.4.1/.git/objects/c4/4eed79d1a98f2fe65c5b1dd9deb86827624089 and ./wordpress-3.4.2/.git/objects/c4/4eed79d1a98f2fe65c5b1dd9deb86827624089 differ
Binary files ./wordpress-3.4.1/.git/objects/c4/5bf78c96a972a88d79d927a1fba5ade6b197b1 and ./wordpress-3.4.2/.git/objects/c4/5bf78c96a972a88d79d927a1fba5ade6b197b1 differ
Binary files ./wordpress-3.4.1/.git/objects/c4/998429d0471239ffc521a63514c56e3fd403b2 and ./wordpress-3.4.2/.git/objects/c4/998429d0471239ffc521a63514c56e3fd403b2 differ
Binary files ./wordpress-3.4.1/.git/objects/c4/cff0e29bc5a7dcd62d6b17e91a0e24c5af5025 and ./wordpress-3.4.2/.git/objects/c4/cff0e29bc5a7dcd62d6b17e91a0e24c5af5025 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/c5/021f169e040c288d3ce9a7dfc9889dedce469a ./wordpress-3.4.2/.git/objects/c5/021f169e040c288d3ce9a7dfc9889dedce469a
*** ./wordpress-3.4.1/.git/objects/c5/021f169e040c288d3ce9a7dfc9889dedce469a 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/c5/021f169e040c288d3ce9a7dfc9889dedce469a 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,3 ----
+ xUPj@[lM
+ !-E[z쨃v6;*s~j|`ǐY@_4=5+Cb˦%`W3S 's@l5c6vHkl>A@zKGr5D^0T7=9]oMQ{f lm
+ K-KXccc??T
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/c5/853bafe917ece6b6a72c01bb5c03c90d1be025 and ./wordpress-3.4.2/.git/objects/c5/853bafe917ece6b6a72c01bb5c03c90d1be025 differ
Binary files ./wordpress-3.4.1/.git/objects/c5/c69ff80915e66e66e1512800b3f7c57adcf7d3 and ./wordpress-3.4.2/.git/objects/c5/c69ff80915e66e66e1512800b3f7c57adcf7d3 differ
Binary files ./wordpress-3.4.1/.git/objects/c5/edb5e2df80a230df0fd499df13652841e83b43 and ./wordpress-3.4.2/.git/objects/c5/edb5e2df80a230df0fd499df13652841e83b43 differ
Binary files ./wordpress-3.4.1/.git/objects/c6/113ab5b8f8c1335256517adc446c0bd72f9b6a and ./wordpress-3.4.2/.git/objects/c6/113ab5b8f8c1335256517adc446c0bd72f9b6a differ
Binary files ./wordpress-3.4.1/.git/objects/c6/330b620b678e8b54507f6968a6360685c98397 and ./wordpress-3.4.2/.git/objects/c6/330b620b678e8b54507f6968a6360685c98397 differ
Binary files ./wordpress-3.4.1/.git/objects/c6/398e6775b2e9cfd8a9561f77a7d5f9316ed131 and ./wordpress-3.4.2/.git/objects/c6/398e6775b2e9cfd8a9561f77a7d5f9316ed131 differ
Binary files ./wordpress-3.4.1/.git/objects/c6/473b324ee1dae1faaacc0826639833f551116c and ./wordpress-3.4.2/.git/objects/c6/473b324ee1dae1faaacc0826639833f551116c differ
Binary files ./wordpress-3.4.1/.git/objects/c6/b2e808faa050894e0d011ec266faaddedea7d1 and ./wordpress-3.4.2/.git/objects/c6/b2e808faa050894e0d011ec266faaddedea7d1 differ
Binary files ./wordpress-3.4.1/.git/objects/c6/f2f24750d74ad578c58ca373dc7318f3e99e37 and ./wordpress-3.4.2/.git/objects/c6/f2f24750d74ad578c58ca373dc7318f3e99e37 differ
Binary files ./wordpress-3.4.1/.git/objects/c7/c516a0ce1e8e6b62516702a624d9348dfc984f and ./wordpress-3.4.2/.git/objects/c7/c516a0ce1e8e6b62516702a624d9348dfc984f differ
Binary files ./wordpress-3.4.1/.git/objects/c7/c9e8c9fdd35fa420696e4c43631bd6726999a4 and ./wordpress-3.4.2/.git/objects/c7/c9e8c9fdd35fa420696e4c43631bd6726999a4 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/c8/129fbcd683db59faa8d5fab07998047736c522 ./wordpress-3.4.2/.git/objects/c8/129fbcd683db59faa8d5fab07998047736c522
*** ./wordpress-3.4.1/.git/objects/c8/129fbcd683db59faa8d5fab07998047736c522 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/c8/129fbcd683db59faa8d5fab07998047736c522 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,5 ----
+ xSo@6PT1p+Q$b؉ʱ.Q \kc5JnTĂ`bGv@0_Ā:s{
H@Ip˳3gg8mmg҉|[hK7&sGz4y>e+Nv5%2!
"4B6~3#9^7;y% 4WgL,`B
~Ti(BJU`YQUxEjuE
+ <<{znLl)tQ°$xKe\dd7(-B`č$#jqA8S0$LLQ$BA k6ƑIg7b'd'vY=6r02E~%YQ&NCڴ
+ ɲԐ%
+ a
JMVsTXV4!C4Z6Uɪժjm Es>;Jbu+ƈC VPI
,9Lp!+8^m5bQu.G>z59#fO"փv0pƲY__nAA
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/c8/2fede5a966ba7f9989badbd2bdf82733532daa and ./wordpress-3.4.2/.git/objects/c8/2fede5a966ba7f9989badbd2bdf82733532daa differ
Binary files ./wordpress-3.4.1/.git/objects/c8/7f825e668151d2c26732bab34d4e466614e5aa and ./wordpress-3.4.2/.git/objects/c8/7f825e668151d2c26732bab34d4e466614e5aa differ
Binary files ./wordpress-3.4.1/.git/objects/c8/94b2e83522ae29d32e0ed57007d1285c715a7f and ./wordpress-3.4.2/.git/objects/c8/94b2e83522ae29d32e0ed57007d1285c715a7f differ
Binary files ./wordpress-3.4.1/.git/objects/c8/f5da9b829fc3c61b91d1c947e38ea316f3f53c and ./wordpress-3.4.2/.git/objects/c8/f5da9b829fc3c61b91d1c947e38ea316f3f53c differ
Binary files ./wordpress-3.4.1/.git/objects/c8/f9dfc776403e2aa539fe8d7d834be9a0edf107 and ./wordpress-3.4.2/.git/objects/c8/f9dfc776403e2aa539fe8d7d834be9a0edf107 differ
Binary files ./wordpress-3.4.1/.git/objects/c9/47f4484d47b86e4348adf845a4a3b2e8bc892c and ./wordpress-3.4.2/.git/objects/c9/47f4484d47b86e4348adf845a4a3b2e8bc892c differ
Binary files ./wordpress-3.4.1/.git/objects/c9/6b94472c8c74f31d44c5d22533435eedaaf6bb and ./wordpress-3.4.2/.git/objects/c9/6b94472c8c74f31d44c5d22533435eedaaf6bb differ
Binary files ./wordpress-3.4.1/.git/objects/c9/7d38e8f96f70c60ce2e10b16de344e4dc6034f and ./wordpress-3.4.2/.git/objects/c9/7d38e8f96f70c60ce2e10b16de344e4dc6034f differ
Binary files ./wordpress-3.4.1/.git/objects/c9/8b28cc30d29869e6511bd3d1629c7192746068 and ./wordpress-3.4.2/.git/objects/c9/8b28cc30d29869e6511bd3d1629c7192746068 differ
Binary files ./wordpress-3.4.1/.git/objects/c9/9dff2206abeea0959179c0d13a1dec7912ed21 and ./wordpress-3.4.2/.git/objects/c9/9dff2206abeea0959179c0d13a1dec7912ed21 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/c9/b7597c8849fbc6718b0c1ce75c5f7b1ba94dcf ./wordpress-3.4.2/.git/objects/c9/b7597c8849fbc6718b0c1ce75c5f7b1ba94dcf
*** ./wordpress-3.4.1/.git/objects/c9/b7597c8849fbc6718b0c1ce75c5f7b1ba94dcf 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/c9/b7597c8849fbc6718b0c1ce75c5f7b1ba94dcf 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ xeJ0E}aɰ5(?vYD|@1kciGӭ*sGFOWoCM }P6K$g7=c дMX]2~خ͉`eL;>\ad(azzBml+5:06垳D'ɡ%
+ .~0#דdl\쌍R9JD+ 1NFhE`Dq
xj:|I)f. =i,{l6˜*pV0-՞-+8=,{zόS"fIT¡H=Hg
"7
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/c9/d8fdd0bb2734fbb717405a43fbab9c5a89ad46 and ./wordpress-3.4.2/.git/objects/c9/d8fdd0bb2734fbb717405a43fbab9c5a89ad46 differ
Binary files ./wordpress-3.4.1/.git/objects/ca/452026a449b39d37d76049bb37cbe5e2fc3206 and ./wordpress-3.4.2/.git/objects/ca/452026a449b39d37d76049bb37cbe5e2fc3206 differ
Binary files ./wordpress-3.4.1/.git/objects/ca/54fd388b03f1f96b6a9031e0e265033045a229 and ./wordpress-3.4.2/.git/objects/ca/54fd388b03f1f96b6a9031e0e265033045a229 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/ca/63fdad4248ac934ec63d2f3eba29399ce13b62 ./wordpress-3.4.2/.git/objects/ca/63fdad4248ac934ec63d2f3eba29399ce13b62
*** ./wordpress-3.4.1/.git/objects/ca/63fdad4248ac934ec63d2f3eba29399ce13b62 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/ca/63fdad4248ac934ec63d2f3eba29399ce13b62 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,3 ----
+ x=
+ 1Fm)\4 #$Q#Y6EŻ]-Ri5Cl9D;rhǠ<˪yQ.#(u6R,5HpEjAya,
+ 9dۏiL>p+z/tZ
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/ca/902bdcba2021d7a2ab384a9364ca51a525d771 and ./wordpress-3.4.2/.git/objects/ca/902bdcba2021d7a2ab384a9364ca51a525d771 differ
Binary files ./wordpress-3.4.1/.git/objects/cb/21424319829487d477e5f17262891c1be03e8c and ./wordpress-3.4.2/.git/objects/cb/21424319829487d477e5f17262891c1be03e8c differ
Binary files ./wordpress-3.4.1/.git/objects/cb/2a5597c8cde15867682100cfbf507a2016bc6d and ./wordpress-3.4.2/.git/objects/cb/2a5597c8cde15867682100cfbf507a2016bc6d differ
Binary files ./wordpress-3.4.1/.git/objects/cb/7aa8043d1e1f97e2bcfd5455d57221ec0f43e8 and ./wordpress-3.4.2/.git/objects/cb/7aa8043d1e1f97e2bcfd5455d57221ec0f43e8 differ
Binary files ./wordpress-3.4.1/.git/objects/cb/950184f8426d51101e6e21db3f23c3800110db and ./wordpress-3.4.2/.git/objects/cb/950184f8426d51101e6e21db3f23c3800110db differ
Binary files ./wordpress-3.4.1/.git/objects/cb/b4172bacbbcc3f5067cef36cf09dd47ebfc4d5 and ./wordpress-3.4.2/.git/objects/cb/b4172bacbbcc3f5067cef36cf09dd47ebfc4d5 differ
Binary files ./wordpress-3.4.1/.git/objects/cb/c29007c92607bc44a41af0ba1f4994d4993e9f and ./wordpress-3.4.2/.git/objects/cb/c29007c92607bc44a41af0ba1f4994d4993e9f differ
Binary files ./wordpress-3.4.1/.git/objects/cb/cb49b5dec22636a0f9a0f729ee2de3e388177d and ./wordpress-3.4.2/.git/objects/cb/cb49b5dec22636a0f9a0f729ee2de3e388177d differ
Binary files ./wordpress-3.4.1/.git/objects/cb/cde87cad97217fa92f742422e85d103220db4d and ./wordpress-3.4.2/.git/objects/cb/cde87cad97217fa92f742422e85d103220db4d differ
Binary files ./wordpress-3.4.1/.git/objects/cb/d5312936cd98ef3a65ae0f923af076b751dd26 and ./wordpress-3.4.2/.git/objects/cb/d5312936cd98ef3a65ae0f923af076b751dd26 differ
Binary files ./wordpress-3.4.1/.git/objects/cc/341b140ca0d0311fb9f75b50da05048a209dc0 and ./wordpress-3.4.2/.git/objects/cc/341b140ca0d0311fb9f75b50da05048a209dc0 differ
Binary files ./wordpress-3.4.1/.git/objects/cc/4775c6de4cd307f7c06046f8766d849ec5d232 and ./wordpress-3.4.2/.git/objects/cc/4775c6de4cd307f7c06046f8766d849ec5d232 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/cc/58eb4a307437a0e994b677c5620360ddbf8ede ./wordpress-3.4.2/.git/objects/cc/58eb4a307437a0e994b677c5620360ddbf8ede
*** ./wordpress-3.4.1/.git/objects/cc/58eb4a307437a0e994b677c5620360ddbf8ede 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/cc/58eb4a307437a0e994b677c5620360ddbf8ede 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ xSM0%<ɎZsU_i
]NKUv'IѸG?:'\Zx6Q;j8AzpXB+M)H>/:O 38/1ϻbDjddkAw8
+ C]ŭsib˲$| ucv {rGZJ"Wcza fS7j1*Yj+=gZ:}0h7q|C壞ĸqh?<-Qsz,MRL1f M}@gMp{šxV[T^.!l{w8Joi w\^8fWqJ[gӝogOY8p$<.q""h12˪545F7CWSt)
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/cc/665817b86299b9218328a1b86da64b2f5bc9ed and ./wordpress-3.4.2/.git/objects/cc/665817b86299b9218328a1b86da64b2f5bc9ed differ
Binary files ./wordpress-3.4.1/.git/objects/cc/a2bf1e2189c6362b74ca0cd3538d7d8eb45c4d and ./wordpress-3.4.2/.git/objects/cc/a2bf1e2189c6362b74ca0cd3538d7d8eb45c4d differ
Binary files ./wordpress-3.4.1/.git/objects/cc/cde57d09549c7c82da193f3a28ba9dec53b771 and ./wordpress-3.4.2/.git/objects/cc/cde57d09549c7c82da193f3a28ba9dec53b771 differ
Binary files ./wordpress-3.4.1/.git/objects/cd/4a09676045fbe73dd847d3f1cd46b70ef3c831 and ./wordpress-3.4.2/.git/objects/cd/4a09676045fbe73dd847d3f1cd46b70ef3c831 differ
Binary files ./wordpress-3.4.1/.git/objects/cd/5e694092268e9ba1e6a50a01f3dd6d27dc2621 and ./wordpress-3.4.2/.git/objects/cd/5e694092268e9ba1e6a50a01f3dd6d27dc2621 differ
Binary files ./wordpress-3.4.1/.git/objects/cd/8e957b387be2692cbb68ea182b4b468788f362 and ./wordpress-3.4.2/.git/objects/cd/8e957b387be2692cbb68ea182b4b468788f362 differ
Binary files ./wordpress-3.4.1/.git/objects/cd/94ee3b25986d92f50ac81ac1e8ab5281807ce5 and ./wordpress-3.4.2/.git/objects/cd/94ee3b25986d92f50ac81ac1e8ab5281807ce5 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/cd/abd2fd4156d46b6db0f724bce9e1281dc3d17f ./wordpress-3.4.2/.git/objects/cd/abd2fd4156d46b6db0f724bce9e1281dc3d17f
*** ./wordpress-3.4.1/.git/objects/cd/abd2fd4156d46b6db0f724bce9e1281dc3d17f 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/cd/abd2fd4156d46b6db0f724bce9e1281dc3d17f 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,4 ----
+ x-
+ 0@Qׁ|A⢸-*B<;e*{S,5ԧr
+ Q{PLo Ip"kZB?c˹,qG
+ )Qt6MÔW UH1Ó)ƐG{e٤ ~)3
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/ce/4be63558b02e9837b995d2b9dd540ce6d61a6f and ./wordpress-3.4.2/.git/objects/ce/4be63558b02e9837b995d2b9dd540ce6d61a6f differ
Binary files ./wordpress-3.4.1/.git/objects/ce/709578be01fa438288a2ae9bcbe97449a8b5fb and ./wordpress-3.4.2/.git/objects/ce/709578be01fa438288a2ae9bcbe97449a8b5fb differ
Binary files ./wordpress-3.4.1/.git/objects/ce/926410970387b46eaaf391a18d44ff122e76cf and ./wordpress-3.4.2/.git/objects/ce/926410970387b46eaaf391a18d44ff122e76cf differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/ce/ad0306c0e38e57bdb0cc85a407b995dcbdc656 ./wordpress-3.4.2/.git/objects/ce/ad0306c0e38e57bdb0cc85a407b995dcbdc656
*** ./wordpress-3.4.1/.git/objects/ce/ad0306c0e38e57bdb0cc85a407b995dcbdc656 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/ce/ad0306c0e38e57bdb0cc85a407b995dcbdc656 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ xKOR047bptLgg+sO2 xkPˠ``)5wGsbLs}:}<[4.Qd^KꁲfWWf40,aqJ^6MR:`E
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/ce/bd89162276435608f228fb06c55ccd6e2aa626 and ./wordpress-3.4.2/.git/objects/ce/bd89162276435608f228fb06c55ccd6e2aa626 differ
Binary files ./wordpress-3.4.1/.git/objects/ce/c4abf98727acd1f6c924e1ecad15e02d54e13a and ./wordpress-3.4.2/.git/objects/ce/c4abf98727acd1f6c924e1ecad15e02d54e13a differ
Binary files ./wordpress-3.4.1/.git/objects/ce/fc38f7ee3cf39577d3130cfacfe3192c627367 and ./wordpress-3.4.2/.git/objects/ce/fc38f7ee3cf39577d3130cfacfe3192c627367 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/ce/fc8cf2ce7a7300e504f2170bb7e338257c8449 ./wordpress-3.4.2/.git/objects/ce/fc8cf2ce7a7300e504f2170bb7e338257c8449
*** ./wordpress-3.4.1/.git/objects/ce/fc8cf2ce7a7300e504f2170bb7e338257c8449 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/ce/fc8cf2ce7a7300e504f2170bb7e338257c8449 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,5 ----
+ xTn@ *(i5CЇ(RZbdwUeg6JէJe9gzޝyۀ]?$ǀru]62`
er;Z-~,/?݊q&- e]etpj9;m.:
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/cf/01db522b64caca7c208d4c6499b63d38b47db7 and ./wordpress-3.4.2/.git/objects/cf/01db522b64caca7c208d4c6499b63d38b47db7 differ
Binary files ./wordpress-3.4.1/.git/objects/cf/fb7b9f33fdbda7e61964ac88008dc730b90dfa and ./wordpress-3.4.2/.git/objects/cf/fb7b9f33fdbda7e61964ac88008dc730b90dfa differ
Binary files ./wordpress-3.4.1/.git/objects/d0/455d7ef6c52ce48df3e355e61143f9207c4eb5 and ./wordpress-3.4.2/.git/objects/d0/455d7ef6c52ce48df3e355e61143f9207c4eb5 differ
Binary files ./wordpress-3.4.1/.git/objects/d0/abf36ed0a45e8dd0106a6abc4372f23c50c3f8 and ./wordpress-3.4.2/.git/objects/d0/abf36ed0a45e8dd0106a6abc4372f23c50c3f8 differ
Binary files ./wordpress-3.4.1/.git/objects/d0/c4b9a0a0a22b029ad78a601c5a3300bfc6d7c8 and ./wordpress-3.4.2/.git/objects/d0/c4b9a0a0a22b029ad78a601c5a3300bfc6d7c8 differ
Binary files ./wordpress-3.4.1/.git/objects/d0/c5fb25f7775ca528aca4f4554a5caee98d8a67 and ./wordpress-3.4.2/.git/objects/d0/c5fb25f7775ca528aca4f4554a5caee98d8a67 differ
Binary files ./wordpress-3.4.1/.git/objects/d0/cb23c238bd68061a5b11d4da1ba6f885ca348d and ./wordpress-3.4.2/.git/objects/d0/cb23c238bd68061a5b11d4da1ba6f885ca348d differ
Binary files ./wordpress-3.4.1/.git/objects/d0/cb8e4ccaeeeee7e75a67885966364482cef8f7 and ./wordpress-3.4.2/.git/objects/d0/cb8e4ccaeeeee7e75a67885966364482cef8f7 differ
Binary files ./wordpress-3.4.1/.git/objects/d0/d4336e28c301456d944c50aaa096bc6a292dc3 and ./wordpress-3.4.2/.git/objects/d0/d4336e28c301456d944c50aaa096bc6a292dc3 differ
Binary files ./wordpress-3.4.1/.git/objects/d1/482880421dde677d3302940aa875ff22a11b06 and ./wordpress-3.4.2/.git/objects/d1/482880421dde677d3302940aa875ff22a11b06 differ
Binary files ./wordpress-3.4.1/.git/objects/d1/4c6591fab0c4721235c7fe2e57f6cbaf7439dc and ./wordpress-3.4.2/.git/objects/d1/4c6591fab0c4721235c7fe2e57f6cbaf7439dc differ
Binary files ./wordpress-3.4.1/.git/objects/d1/723274740b3c0a10181641cf6bc606279f2769 and ./wordpress-3.4.2/.git/objects/d1/723274740b3c0a10181641cf6bc606279f2769 differ
Binary files ./wordpress-3.4.1/.git/objects/d1/b5561e5050e027c04b35afe577df84bd6ca434 and ./wordpress-3.4.2/.git/objects/d1/b5561e5050e027c04b35afe577df84bd6ca434 differ
Binary files ./wordpress-3.4.1/.git/objects/d2/287e2425b7bfacf9a870c3ee485d8f214e8fa1 and ./wordpress-3.4.2/.git/objects/d2/287e2425b7bfacf9a870c3ee485d8f214e8fa1 differ
Binary files ./wordpress-3.4.1/.git/objects/d2/536b9c7ee88be7d2b0eb26fb931a0b7512a6da and ./wordpress-3.4.2/.git/objects/d2/536b9c7ee88be7d2b0eb26fb931a0b7512a6da differ
Binary files ./wordpress-3.4.1/.git/objects/d2/5ec31f609ce1c1f02cc4de3492b5afc6d67f46 and ./wordpress-3.4.2/.git/objects/d2/5ec31f609ce1c1f02cc4de3492b5afc6d67f46 differ
Binary files ./wordpress-3.4.1/.git/objects/d2/875f3e83fa3d71c4dd82dd8d2d3a3517a67ea6 and ./wordpress-3.4.2/.git/objects/d2/875f3e83fa3d71c4dd82dd8d2d3a3517a67ea6 differ
Binary files ./wordpress-3.4.1/.git/objects/d2/ac78c04bd1f50059ce9c1fa9534dcee2195579 and ./wordpress-3.4.2/.git/objects/d2/ac78c04bd1f50059ce9c1fa9534dcee2195579 differ
Binary files ./wordpress-3.4.1/.git/objects/d2/d6dc2cf30f411a6dd977fdf107fb6aa11b852a and ./wordpress-3.4.2/.git/objects/d2/d6dc2cf30f411a6dd977fdf107fb6aa11b852a differ
Binary files ./wordpress-3.4.1/.git/objects/d2/ee200088f8cc69b965b9520e10c0bd1883a052 and ./wordpress-3.4.2/.git/objects/d2/ee200088f8cc69b965b9520e10c0bd1883a052 differ
Binary files ./wordpress-3.4.1/.git/objects/d2/f93671ca3090b277e16a67b1aa6cfb6ac4915f and ./wordpress-3.4.2/.git/objects/d2/f93671ca3090b277e16a67b1aa6cfb6ac4915f differ
Binary files ./wordpress-3.4.1/.git/objects/d3/1ebb0c966d3c4a1cff8a4ee37263cdee5f96f1 and ./wordpress-3.4.2/.git/objects/d3/1ebb0c966d3c4a1cff8a4ee37263cdee5f96f1 differ
Binary files ./wordpress-3.4.1/.git/objects/d3/33a2b3eabcd33956038bd3eee63d957ad5ba6f and ./wordpress-3.4.2/.git/objects/d3/33a2b3eabcd33956038bd3eee63d957ad5ba6f differ
Binary files ./wordpress-3.4.1/.git/objects/d3/41541ce3f0679444d2bdf6a5d94ca8c1c4ae17 and ./wordpress-3.4.2/.git/objects/d3/41541ce3f0679444d2bdf6a5d94ca8c1c4ae17 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/d3/4c49cf9b08c2547427fed783f09dbe7276a2e6 ./wordpress-3.4.2/.git/objects/d3/4c49cf9b08c2547427fed783f09dbe7276a2e6
*** ./wordpress-3.4.1/.git/objects/d3/4c49cf9b08c2547427fed783f09dbe7276a2e6 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/d3/4c49cf9b08c2547427fed783f09dbe7276a2e6 2012-09-10 14:16:46.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ xA @Qלb.0&Ƹե7PhMzwC9ubi>{!)`MjtKmpKǖs\n{\[T֑8$F#zDgis+']9E
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/d3/51a564306fdaef8e9a76318820569993735cb2 and ./wordpress-3.4.2/.git/objects/d3/51a564306fdaef8e9a76318820569993735cb2 differ
Binary files ./wordpress-3.4.1/.git/objects/d3/527723c6d8a0ddfa7ca0bfe1ab8fce0055918c and ./wordpress-3.4.2/.git/objects/d3/527723c6d8a0ddfa7ca0bfe1ab8fce0055918c differ
Binary files ./wordpress-3.4.1/.git/objects/d3/6845b63301b2b62fc01c44c96389309d85a9f6 and ./wordpress-3.4.2/.git/objects/d3/6845b63301b2b62fc01c44c96389309d85a9f6 differ
Binary files ./wordpress-3.4.1/.git/objects/d4/2b15408e0f1c556b2316b496f222bd1b55cd47 and ./wordpress-3.4.2/.git/objects/d4/2b15408e0f1c556b2316b496f222bd1b55cd47 differ
Binary files ./wordpress-3.4.1/.git/objects/d4/54c86582fcfb7d3c6ea3e89257ebc0fb4ebcf8 and ./wordpress-3.4.2/.git/objects/d4/54c86582fcfb7d3c6ea3e89257ebc0fb4ebcf8 differ
Binary files ./wordpress-3.4.1/.git/objects/d4/70772ff6aacf7a2c6767e72c2290a761ef37d0 and ./wordpress-3.4.2/.git/objects/d4/70772ff6aacf7a2c6767e72c2290a761ef37d0 differ
Binary files ./wordpress-3.4.1/.git/objects/d4/8e5a94929da827b6a8a2dc39251cf03b921a80 and ./wordpress-3.4.2/.git/objects/d4/8e5a94929da827b6a8a2dc39251cf03b921a80 differ
Binary files ./wordpress-3.4.1/.git/objects/d4/e2309a882107c421e78a9864fd3f9cd24f2270 and ./wordpress-3.4.2/.git/objects/d4/e2309a882107c421e78a9864fd3f9cd24f2270 differ
Binary files ./wordpress-3.4.1/.git/objects/d4/f9c7680a6ec05e17c93d3d66c7ae9db29827af and ./wordpress-3.4.2/.git/objects/d4/f9c7680a6ec05e17c93d3d66c7ae9db29827af differ
Binary files ./wordpress-3.4.1/.git/objects/d5/11905c1647a1e311e8b20d5930a37a9c2531cd and ./wordpress-3.4.2/.git/objects/d5/11905c1647a1e311e8b20d5930a37a9c2531cd differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/d5/3fc4c9da0b7d04bca5f038b7d56885c9e328e1 ./wordpress-3.4.2/.git/objects/d5/3fc4c9da0b7d04bca5f038b7d56885c9e328e1
*** ./wordpress-3.4.1/.git/objects/d5/3fc4c9da0b7d04bca5f038b7d56885c9e328e1 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/d5/3fc4c9da0b7d04bca5f038b7d56885c9e328e1 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ xMj0D{Wͭ6Mrȡ|Qm-Wf%S!\gvvFnx:aVU+v _z6`yIg~RW
$X".Rt-&NBDQ!['RʱKN8==^P"Yx˴0;bN
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/d5/56e13cdab80ab674fee17dae33b3031c5e9f17 and ./wordpress-3.4.2/.git/objects/d5/56e13cdab80ab674fee17dae33b3031c5e9f17 differ
Binary files ./wordpress-3.4.1/.git/objects/d5/998ba65748d78e05e56b69259346890ddcf3b5 and ./wordpress-3.4.2/.git/objects/d5/998ba65748d78e05e56b69259346890ddcf3b5 differ
Binary files ./wordpress-3.4.1/.git/objects/d5/b003cf567593cf9a012cef6761a2854affa61a and ./wordpress-3.4.2/.git/objects/d5/b003cf567593cf9a012cef6761a2854affa61a differ
Binary files ./wordpress-3.4.1/.git/objects/d6/3012daf4b574265ff2de65d28ac662ad8d6cc1 and ./wordpress-3.4.2/.git/objects/d6/3012daf4b574265ff2de65d28ac662ad8d6cc1 differ
Binary files ./wordpress-3.4.1/.git/objects/d6/4c361693f6d677f90307112469377a8adb855a and ./wordpress-3.4.2/.git/objects/d6/4c361693f6d677f90307112469377a8adb855a differ
Binary files ./wordpress-3.4.1/.git/objects/d6/4d8a66ebc7f512f5a44dd30f9ba88b9eb4d81c and ./wordpress-3.4.2/.git/objects/d6/4d8a66ebc7f512f5a44dd30f9ba88b9eb4d81c differ
Binary files ./wordpress-3.4.1/.git/objects/d6/6d123d1a54ec390b253971f0ec26579e1e159b and ./wordpress-3.4.2/.git/objects/d6/6d123d1a54ec390b253971f0ec26579e1e159b differ
Binary files ./wordpress-3.4.1/.git/objects/d6/984f6200b25b831c8db33803e76aae008880d4 and ./wordpress-3.4.2/.git/objects/d6/984f6200b25b831c8db33803e76aae008880d4 differ
Binary files ./wordpress-3.4.1/.git/objects/d7/566362a405ab5822722aa3af4d5d3aa6a895cd and ./wordpress-3.4.2/.git/objects/d7/566362a405ab5822722aa3af4d5d3aa6a895cd differ
Binary files ./wordpress-3.4.1/.git/objects/d7/6cda5c6be884a1503aa22e305046607770aa6a and ./wordpress-3.4.2/.git/objects/d7/6cda5c6be884a1503aa22e305046607770aa6a differ
Binary files ./wordpress-3.4.1/.git/objects/d7/7260a832cf13aea908df266ac3528402117803 and ./wordpress-3.4.2/.git/objects/d7/7260a832cf13aea908df266ac3528402117803 differ
Binary files ./wordpress-3.4.1/.git/objects/d7/9ee1d7ecacccb3c5aeee8d285193fdcac68bbd and ./wordpress-3.4.2/.git/objects/d7/9ee1d7ecacccb3c5aeee8d285193fdcac68bbd differ
Binary files ./wordpress-3.4.1/.git/objects/d7/b4bb19100fbf769f24043937478d381e29bc18 and ./wordpress-3.4.2/.git/objects/d7/b4bb19100fbf769f24043937478d381e29bc18 differ
Binary files ./wordpress-3.4.1/.git/objects/d7/dd4e963a0b12aa386355ebdc1c63f06ad0734d and ./wordpress-3.4.2/.git/objects/d7/dd4e963a0b12aa386355ebdc1c63f06ad0734d differ
Binary files ./wordpress-3.4.1/.git/objects/d7/f5f2f4b18f8a141c7a5dd1e09ff106a2f9fa1e and ./wordpress-3.4.2/.git/objects/d7/f5f2f4b18f8a141c7a5dd1e09ff106a2f9fa1e differ
Binary files ./wordpress-3.4.1/.git/objects/d7/fa9713588b437c9ac0cb2f1123a3b3e622b586 and ./wordpress-3.4.2/.git/objects/d7/fa9713588b437c9ac0cb2f1123a3b3e622b586 differ
Binary files ./wordpress-3.4.1/.git/objects/d8/312f958982c847d1a0598c32dc2be51cd75eae and ./wordpress-3.4.2/.git/objects/d8/312f958982c847d1a0598c32dc2be51cd75eae differ
Binary files ./wordpress-3.4.1/.git/objects/d8/5b4952ed2db712dd70ab899dbc461396ea369d and ./wordpress-3.4.2/.git/objects/d8/5b4952ed2db712dd70ab899dbc461396ea369d differ
Binary files ./wordpress-3.4.1/.git/objects/d8/677c9183fbbbcb6ac065f3b72d062fcb408fff and ./wordpress-3.4.2/.git/objects/d8/677c9183fbbbcb6ac065f3b72d062fcb408fff differ
Binary files ./wordpress-3.4.1/.git/objects/d8/694978864f13660982114378436732d9a725ab and ./wordpress-3.4.2/.git/objects/d8/694978864f13660982114378436732d9a725ab differ
Binary files ./wordpress-3.4.1/.git/objects/d8/70e3d62e995fe15b50b5d7eeb3ff80a2e693ff and ./wordpress-3.4.2/.git/objects/d8/70e3d62e995fe15b50b5d7eeb3ff80a2e693ff differ
Binary files ./wordpress-3.4.1/.git/objects/d8/a3c9617f38574331c4d384de81452150cbfb5d and ./wordpress-3.4.2/.git/objects/d8/a3c9617f38574331c4d384de81452150cbfb5d differ
Binary files ./wordpress-3.4.1/.git/objects/d8/a8b805ff96e414a9ee7d0196f3e6eb9e368b13 and ./wordpress-3.4.2/.git/objects/d8/a8b805ff96e414a9ee7d0196f3e6eb9e368b13 differ
Binary files ./wordpress-3.4.1/.git/objects/d8/d0a57d2a9ca583a0fb51b8c9c598a8ef7484f1 and ./wordpress-3.4.2/.git/objects/d8/d0a57d2a9ca583a0fb51b8c9c598a8ef7484f1 differ
Binary files ./wordpress-3.4.1/.git/objects/d8/f548a80da542700add0aa2baf2cfea5f18a2ec and ./wordpress-3.4.2/.git/objects/d8/f548a80da542700add0aa2baf2cfea5f18a2ec differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/d9/fb2feddeff27aa38e82da76688e76d3b3505ed ./wordpress-3.4.2/.git/objects/d9/fb2feddeff27aa38e82da76688e76d3b3505ed
*** ./wordpress-3.4.1/.git/objects/d9/fb2feddeff27aa38e82da76688e76d3b3505ed 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/d9/fb2feddeff27aa38e82da76688e76d3b3505ed 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,3 ----
+ x}Qj0
+ kZZ(t[!nq@(u\]F3OW$hn4$#A J4 uGr{g)
+ JFH''LUy./Pm.-Sۭ
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/da/9a70a89bfaa8c45b2627034d8cf9f210a40ebf and ./wordpress-3.4.2/.git/objects/da/9a70a89bfaa8c45b2627034d8cf9f210a40ebf differ
Binary files ./wordpress-3.4.1/.git/objects/da/ebe0dbefc8ff3e9ed10f0eb2e0c671a0aabaef and ./wordpress-3.4.2/.git/objects/da/ebe0dbefc8ff3e9ed10f0eb2e0c671a0aabaef differ
Binary files ./wordpress-3.4.1/.git/objects/da/f4909ad2271ede2f6af656527c863d40d2d4ed and ./wordpress-3.4.2/.git/objects/da/f4909ad2271ede2f6af656527c863d40d2d4ed differ
Binary files ./wordpress-3.4.1/.git/objects/da/fcd280534e55da467704e96c54699f18b41375 and ./wordpress-3.4.2/.git/objects/da/fcd280534e55da467704e96c54699f18b41375 differ
Binary files ./wordpress-3.4.1/.git/objects/db/06a84c7c6e4e5482628d9b554c6bb35f6f820a and ./wordpress-3.4.2/.git/objects/db/06a84c7c6e4e5482628d9b554c6bb35f6f820a differ
Binary files ./wordpress-3.4.1/.git/objects/db/11c89e4ec339505dfb76d6294ccaf07c3db9b2 and ./wordpress-3.4.2/.git/objects/db/11c89e4ec339505dfb76d6294ccaf07c3db9b2 differ
Binary files ./wordpress-3.4.1/.git/objects/db/44df78c969854b9b4269a4c02ab7856c43e0f7 and ./wordpress-3.4.2/.git/objects/db/44df78c969854b9b4269a4c02ab7856c43e0f7 differ
Binary files ./wordpress-3.4.1/.git/objects/db/79f166885eafa7b9d1bb95f23b0761bb9868bd and ./wordpress-3.4.2/.git/objects/db/79f166885eafa7b9d1bb95f23b0761bb9868bd differ
Binary files ./wordpress-3.4.1/.git/objects/db/bcb1dc3570c07fcc14113d0f99be5e487cbb97 and ./wordpress-3.4.2/.git/objects/db/bcb1dc3570c07fcc14113d0f99be5e487cbb97 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/db/e2f4816e0f8c60ac87a4b45876435c719fc661 ./wordpress-3.4.2/.git/objects/db/e2f4816e0f8c60ac87a4b45876435c719fc661
*** ./wordpress-3.4.1/.git/objects/db/e2f4816e0f8c60ac87a4b45876435c719fc661 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/db/e2f4816e0f8c60ac87a4b45876435c719fc661 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ xMO0)]&Ae.|,窚:uiեi'I7qDZ}jaλDTw&emb
Q3dE
+ -DdKH&6PQƵ+%^9deGZ]k"
a\NcasBB(T#='0wtrϵdMuPYOAYK<)Y"|ɄoK`mKExh>ALzd(B%Hp*Il7!{<y@xd^]*H|@WuE[lgV4LҸv5 W6б:kkl1c
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/dc/1c3a7ebd5f56b095080bc90bbdbe2b24c831aa and ./wordpress-3.4.2/.git/objects/dc/1c3a7ebd5f56b095080bc90bbdbe2b24c831aa differ
Binary files ./wordpress-3.4.1/.git/objects/dc/2903c6c59926a084693d26b746e7b7a5901f9d and ./wordpress-3.4.2/.git/objects/dc/2903c6c59926a084693d26b746e7b7a5901f9d differ
Binary files ./wordpress-3.4.1/.git/objects/dc/2955b1e42b69b8874d6f43663c26a793e9db25 and ./wordpress-3.4.2/.git/objects/dc/2955b1e42b69b8874d6f43663c26a793e9db25 differ
Binary files ./wordpress-3.4.1/.git/objects/dc/41e58145f24947cccdf414fd05060d3129b622 and ./wordpress-3.4.2/.git/objects/dc/41e58145f24947cccdf414fd05060d3129b622 differ
Binary files ./wordpress-3.4.1/.git/objects/dc/c84fb9cf36b66e69470d9b4081b524704e6faa and ./wordpress-3.4.2/.git/objects/dc/c84fb9cf36b66e69470d9b4081b524704e6faa differ
Binary files ./wordpress-3.4.1/.git/objects/dc/cc9c493f3de1e0d21284c7186f429b2eae1dcc and ./wordpress-3.4.2/.git/objects/dc/cc9c493f3de1e0d21284c7186f429b2eae1dcc differ
Binary files ./wordpress-3.4.1/.git/objects/dc/df3803b5e2bfd62313e830aede5eae00111098 and ./wordpress-3.4.2/.git/objects/dc/df3803b5e2bfd62313e830aede5eae00111098 differ
Binary files ./wordpress-3.4.1/.git/objects/dd/15d165d6e9dc326272a15b6e3ca4e06318930e and ./wordpress-3.4.2/.git/objects/dd/15d165d6e9dc326272a15b6e3ca4e06318930e differ
Binary files ./wordpress-3.4.1/.git/objects/dd/20c1276542eb641a52c05be312ce1d55df8651 and ./wordpress-3.4.2/.git/objects/dd/20c1276542eb641a52c05be312ce1d55df8651 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/dd/3b78bbcfcda95ac77f4940db4b9d392b4dda09 ./wordpress-3.4.2/.git/objects/dd/3b78bbcfcda95ac77f4940db4b9d392b4dda09
*** ./wordpress-3.4.1/.git/objects/dd/3b78bbcfcda95ac77f4940db4b9d392b4dda09 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/dd/3b78bbcfcda95ac77f4940db4b9d392b4dda09 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,4 ----
+ xuTQk0ޫ+yfN;{2(Baf졔X"yܮ-sn;pL$}Vf
?}x7?W:hUJAj7[e&z
z|L'=9:mnawWkeƵf{BKieqP\5PhD1N*AJLۄITym指x֏,"ުNPnLy7!Zڞ4 Cb
+ _eiCa^QVڐzg/ya'^нۍ^C]DyH'aѠ5
+ +
+ J.Uh3=k1SL8WF{m| c~n> z`|`AXې&1%RJS݄9^P7w,;_i#}9w]_DF
\ No newline at end of file
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/e1/0805ca997f8006db05a365a2806cd013186b32 ./wordpress-3.4.2/.git/objects/e1/0805ca997f8006db05a365a2806cd013186b32
*** ./wordpress-3.4.1/.git/objects/e1/0805ca997f8006db05a365a2806cd013186b32 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/e1/0805ca997f8006db05a365a2806cd013186b32 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,3 ----
+ xuok067liɼuZX QPsV$/+}'q3~s{h+7_TM͎#8k];qJba$|A8.'oQU65XЂtn8F= +IE+j?LfA>r)up!O5>W\R+OOb6L6\Rڂ93?PNPt]HѲUi0wX'YOQۅ(mvp7]@oÍ%xϒG:`M M$fs
+ O`W"EK&cm>'%y7cm3-(ZoKZv
(Xu͢k0̷R+&dPriƴ I("?3@E7HߜlH H5$O&d&)?RǠ.,
!29N{|e"v/ F#r펏=d!6
$ӽ/7>!#{f<Ǟ"$uLhe? zCI6lɦÌ_ FD
+ 0nvJ䳃HeɆR
ҙ/T.[?B[a˰nn
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/e1/0b97ff9d84d7ff8d7efe5c4c09783dd390e338 and ./wordpress-3.4.2/.git/objects/e1/0b97ff9d84d7ff8d7efe5c4c09783dd390e338 differ
Binary files ./wordpress-3.4.1/.git/objects/e1/3eca3b3c361a1b0cda8a97eaf66582f0764819 and ./wordpress-3.4.2/.git/objects/e1/3eca3b3c361a1b0cda8a97eaf66582f0764819 differ
Binary files ./wordpress-3.4.1/.git/objects/e1/41995cef94318b960198453f72bd60ab99ca8a and ./wordpress-3.4.2/.git/objects/e1/41995cef94318b960198453f72bd60ab99ca8a differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/e1/ac826307cc5941d7385822e3f1edeec69f7cc0 ./wordpress-3.4.2/.git/objects/e1/ac826307cc5941d7385822e3f1edeec69f7cc0
*** ./wordpress-3.4.1/.git/objects/e1/ac826307cc5941d7385822e3f1edeec69f7cc0 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/e1/ac826307cc5941d7385822e3f1edeec69f7cc0 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,8 ----
+ x}U{TWKݥ
+ :uUH2 $2`R!R@+"#
H
+ b1Ch 9y
+ VsZZZW)P"2ki"J[f+ͅ5Kb\hjD2T疈q
_-1yUv
Qҽ+I7ļ6^̋yiD`9j0dE(@i4KNܰhN
0)˛<ɉEvnJ.\x]HxhgD{+nHo%fsNrT5ZZpv#Otty+#3-#E~]xYΘ̶ӆ;SwmW].hRzCKZ|n5ˍzQ_i+N+Nu]5
n: XgNkkpepTg{;fYkv?Nxp}:f3c]11x_@ma6 0isL3̓Of>q::t>u:9_1<ȚH!>!^.͟<7&>kSOUyi1QdO/-:&R2uU1cD~wKNE4H}n{RD]<Sp`MGo/"ĥПZLC":60w~ ?=AW._hP҂á뼦6lo؞0Q-4dg5Z5h`Y;ճk>'jיQJԓ>v<*j6Wm
+ /n߶eT--λ@k[&(@2[٪qL̋隄NxbUUOnqR_}ly㘩e9M/9S,2Կu:𗜓'](UE&b{
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/e1/b879d6ccccbfc1949d71acd5eb5a32e6a2efa5 and ./wordpress-3.4.2/.git/objects/e1/b879d6ccccbfc1949d71acd5eb5a32e6a2efa5 differ
Binary files ./wordpress-3.4.1/.git/objects/e1/e824cc4bca265c7fd1714bd19083d1b8fdac47 and ./wordpress-3.4.2/.git/objects/e1/e824cc4bca265c7fd1714bd19083d1b8fdac47 differ
Binary files ./wordpress-3.4.1/.git/objects/e2/5d155f404eab8a075969c9d29610b0decf82b8 and ./wordpress-3.4.2/.git/objects/e2/5d155f404eab8a075969c9d29610b0decf82b8 differ
Binary files ./wordpress-3.4.1/.git/objects/e2/cf47669e9d76477121bea63c726a6feed05d20 and ./wordpress-3.4.2/.git/objects/e2/cf47669e9d76477121bea63c726a6feed05d20 differ
Binary files ./wordpress-3.4.1/.git/objects/e2/d5fc8b1b5b1096139c2e580013a8614ce5b993 and ./wordpress-3.4.2/.git/objects/e2/d5fc8b1b5b1096139c2e580013a8614ce5b993 differ
Binary files ./wordpress-3.4.1/.git/objects/e2/db55f22d6752e10a57f07e286081ebebacfea5 and ./wordpress-3.4.2/.git/objects/e2/db55f22d6752e10a57f07e286081ebebacfea5 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/e2/e2fb46878d373e135de0e0034ec4a653eeb4d5 ./wordpress-3.4.2/.git/objects/e2/e2fb46878d373e135de0e0034ec4a653eeb4d5
*** ./wordpress-3.4.1/.git/objects/e2/e2fb46878d373e135de0e0034ec4a653eeb4d5 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/e2/e2fb46878d373e135de0e0034ec4a653eeb4d5 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,4 ----
+ xVn0ORalKm?`Iĩ@QKJ 9sc'\$h}{5;W$+Xۃ(>K ?>K*yMT×͘bqzP1iIvUa;g{&BfTb!ڹ_vӲD,CJŊHZB᭢
+ Ύ@Yk9k\5g=x+f nS$3Ea,`(3"/^75AٝUH/t9rIl*QIY2YY5-<2@
+ `-kkӮf7zP8'*t
r]DPFS=cl+s.XF6@%[RFnd'G)2Õ/kʣgE!to5*"/oK|
ګCB g8]XfKRM'`kZ4g<Os 9\o7\\0ISZ19^
:[uʠ%
XV4jKܻS@ɐx{Xq4:&G_;^QWukJdC%g'/
+ }1\cG4zBCDԾ/MCnoYcpx~pqY5"蹸*pPhg@nЪ( lU'-©BƳ$I|I9ץCς.ڵ,DSXN:{:#?Q
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/e3/0869bdc836074d4b07c03508f3d0c70745342d and ./wordpress-3.4.2/.git/objects/e3/0869bdc836074d4b07c03508f3d0c70745342d differ
Binary files ./wordpress-3.4.1/.git/objects/e3/1b29d370c252d3c095e1827dd8c40b10df497d and ./wordpress-3.4.2/.git/objects/e3/1b29d370c252d3c095e1827dd8c40b10df497d differ
Binary files ./wordpress-3.4.1/.git/objects/e3/2e285a614bdac7b85e1e01a4d6745dd9f7834f and ./wordpress-3.4.2/.git/objects/e3/2e285a614bdac7b85e1e01a4d6745dd9f7834f differ
Binary files ./wordpress-3.4.1/.git/objects/e3/9d1f4fc56079707561814f24a4c3686f44cb68 and ./wordpress-3.4.2/.git/objects/e3/9d1f4fc56079707561814f24a4c3686f44cb68 differ
Binary files ./wordpress-3.4.1/.git/objects/e3/e02ee5e2bc349abb0378daad662afb03548c04 and ./wordpress-3.4.2/.git/objects/e3/e02ee5e2bc349abb0378daad662afb03548c04 differ
Binary files ./wordpress-3.4.1/.git/objects/e3/fb1fddb245d383b4655c3ccf1dfd0d30725f0c and ./wordpress-3.4.2/.git/objects/e3/fb1fddb245d383b4655c3ccf1dfd0d30725f0c differ
Binary files ./wordpress-3.4.1/.git/objects/e4/263dc3c1107fdb2c51ddf4b3ed5a237ea11f0b and ./wordpress-3.4.2/.git/objects/e4/263dc3c1107fdb2c51ddf4b3ed5a237ea11f0b differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/e4/40577f834a077a07cc0bd1ff5fffc711cd73a0 ./wordpress-3.4.2/.git/objects/e4/40577f834a077a07cc0bd1ff5fffc711cd73a0
*** ./wordpress-3.4.1/.git/objects/e4/40577f834a077a07cc0bd1ff5fffc711cd73a0 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/e4/40577f834a077a07cc0bd1ff5fffc711cd73a0 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,3 ----
+ x]Sn0sBC`r#h[>}eVf[$('DPG$&%>38'-5&Cb:Fk:Lw÷Rx߸x4ʵ/T(S©6l5F]תl3p1كPމ̚F,|1$R|h^q
EV^:$_FtWC45䜗ԣB7JփWuwl4|f:(
c9r^`LHf>Ա״L6FG$f)z0L!.+?NY
+ -|³ʠDtq֛<9cHp/'zYp*z%#eJ{0m2nH9v8Jdh1v,?\6E:
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/e4/7a5c630afdf30eb9e8d0cb1b1ebb0024e09288 and ./wordpress-3.4.2/.git/objects/e4/7a5c630afdf30eb9e8d0cb1b1ebb0024e09288 differ
Binary files ./wordpress-3.4.1/.git/objects/e4/7e1b5ac4dfe3c54ae099899ac3143669b1fa90 and ./wordpress-3.4.2/.git/objects/e4/7e1b5ac4dfe3c54ae099899ac3143669b1fa90 differ
Binary files ./wordpress-3.4.1/.git/objects/e4/856dac68b790a958e9b4948c1dc2e6861da841 and ./wordpress-3.4.2/.git/objects/e4/856dac68b790a958e9b4948c1dc2e6861da841 differ
Binary files ./wordpress-3.4.1/.git/objects/e4/cd059640960996122cd37d637ae3f656c332ee and ./wordpress-3.4.2/.git/objects/e4/cd059640960996122cd37d637ae3f656c332ee differ
Binary files ./wordpress-3.4.1/.git/objects/e4/dfbda1cecec8944717f5894a8dc5c201a31cda and ./wordpress-3.4.2/.git/objects/e4/dfbda1cecec8944717f5894a8dc5c201a31cda differ
Binary files ./wordpress-3.4.1/.git/objects/e5/0f1dbab9e31451da10749d47307c77a95514de and ./wordpress-3.4.2/.git/objects/e5/0f1dbab9e31451da10749d47307c77a95514de differ
Binary files ./wordpress-3.4.1/.git/objects/e5/201079446a64a0e3e5f585f76ceb98c03d5aaa and ./wordpress-3.4.2/.git/objects/e5/201079446a64a0e3e5f585f76ceb98c03d5aaa differ
Binary files ./wordpress-3.4.1/.git/objects/e5/65824aafafe632011b281cba976baf8b3ba89a and ./wordpress-3.4.2/.git/objects/e5/65824aafafe632011b281cba976baf8b3ba89a differ
Binary files ./wordpress-3.4.1/.git/objects/e5/b398777de0d3763698ab3054fbd7aaa79a5a9c and ./wordpress-3.4.2/.git/objects/e5/b398777de0d3763698ab3054fbd7aaa79a5a9c differ
Binary files ./wordpress-3.4.1/.git/objects/e5/d5880f9e9a832dd63c6671a40f700b9d7be202 and ./wordpress-3.4.2/.git/objects/e5/d5880f9e9a832dd63c6671a40f700b9d7be202 differ
Binary files ./wordpress-3.4.1/.git/objects/e6/5b19cb29e3a05550ec21e15a052045f0e703f1 and ./wordpress-3.4.2/.git/objects/e6/5b19cb29e3a05550ec21e15a052045f0e703f1 differ
Binary files ./wordpress-3.4.1/.git/objects/e6/71094cb0eb210b756117f992cf5ca2caa698fd and ./wordpress-3.4.2/.git/objects/e6/71094cb0eb210b756117f992cf5ca2caa698fd differ
Binary files ./wordpress-3.4.1/.git/objects/e6/7d868a2b4bde9250079bfca077ffefc2f3fc7b and ./wordpress-3.4.2/.git/objects/e6/7d868a2b4bde9250079bfca077ffefc2f3fc7b differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/e6/ac87542c053229af4e76effe6cd9198eab5229 ./wordpress-3.4.2/.git/objects/e6/ac87542c053229af4e76effe6cd9198eab5229
*** ./wordpress-3.4.1/.git/objects/e6/ac87542c053229af4e76effe6cd9198eab5229 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/e6/ac87542c053229af4e76effe6cd9198eab5229 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ xQO0}>MűL4@AIY(v:}wf"1:nnf%O>GxQg4.xl`Z=r^\I].u+nëG0>-vȘdIBebK:ONF>a49!k3MI3N+ OŏX#W>iAhשC80%
Kb\'UDļ/6Dr"'_Tf)* xxQJ!0+Iimb!*l.F'/:ٯ~VSiÅ㖌8l4?aO0VZ4cYWrXp#1F,g&v=c>ܶS8|,12*"5h>(]k:3q
+ $9tr,3F'661"wVC4OsT=o#Ha)(b㾗in(:7jF/G'qѾh1+qzҍGO'8{1)v/)
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/ee/3240107de072c0f456c84a560c754a9cf5a955 and ./wordpress-3.4.2/.git/objects/ee/3240107de072c0f456c84a560c754a9cf5a955 differ
Binary files ./wordpress-3.4.1/.git/objects/ee/3d369d02238e02e0185349064c637232d0e15a and ./wordpress-3.4.2/.git/objects/ee/3d369d02238e02e0185349064c637232d0e15a differ
Binary files ./wordpress-3.4.1/.git/objects/ee/9b9e8feca78f8a4bb0d90369eefd29e1dee642 and ./wordpress-3.4.2/.git/objects/ee/9b9e8feca78f8a4bb0d90369eefd29e1dee642 differ
Binary files ./wordpress-3.4.1/.git/objects/ee/bfb3d5ac589c9a6c3b50749ba7b5031d2c173e and ./wordpress-3.4.2/.git/objects/ee/bfb3d5ac589c9a6c3b50749ba7b5031d2c173e differ
Binary files ./wordpress-3.4.1/.git/objects/ee/ce437d69e02f48cd2aaa7bc54d1503a2efff02 and ./wordpress-3.4.2/.git/objects/ee/ce437d69e02f48cd2aaa7bc54d1503a2efff02 differ
Binary files ./wordpress-3.4.1/.git/objects/ee/ef4d64b3aafd4e0e86ee3bed31e95ea744cb6c and ./wordpress-3.4.2/.git/objects/ee/ef4d64b3aafd4e0e86ee3bed31e95ea744cb6c differ
Binary files ./wordpress-3.4.1/.git/objects/ef/1129c0deab0f4731b2a88981c60b5e27778d7a and ./wordpress-3.4.2/.git/objects/ef/1129c0deab0f4731b2a88981c60b5e27778d7a differ
Binary files ./wordpress-3.4.1/.git/objects/ef/affa5ae93787ccda46d369465db0b063f735ff and ./wordpress-3.4.2/.git/objects/ef/affa5ae93787ccda46d369465db0b063f735ff differ
Binary files ./wordpress-3.4.1/.git/objects/ef/c6f3dcebf5675dc050534e92412d97d276c8b0 and ./wordpress-3.4.2/.git/objects/ef/c6f3dcebf5675dc050534e92412d97d276c8b0 differ
Binary files ./wordpress-3.4.1/.git/objects/ef/e3bc7c0e45f2edf0a516f8ef74aa7ad1a67352 and ./wordpress-3.4.2/.git/objects/ef/e3bc7c0e45f2edf0a516f8ef74aa7ad1a67352 differ
Binary files ./wordpress-3.4.1/.git/objects/f0/0e7b39e5776f5c9b522ab1abcd5694e5f5d876 and ./wordpress-3.4.2/.git/objects/f0/0e7b39e5776f5c9b522ab1abcd5694e5f5d876 differ
Binary files ./wordpress-3.4.1/.git/objects/f0/9933e387e5561ddf4b538342c7bec303056e42 and ./wordpress-3.4.2/.git/objects/f0/9933e387e5561ddf4b538342c7bec303056e42 differ
Binary files ./wordpress-3.4.1/.git/objects/f0/d7cbdebe379a7da89b8b51dbb56e659c12345e and ./wordpress-3.4.2/.git/objects/f0/d7cbdebe379a7da89b8b51dbb56e659c12345e differ
Binary files ./wordpress-3.4.1/.git/objects/f0/da6ecc5c9095b8d5c9b4a3e91e5155c58af0cd and ./wordpress-3.4.2/.git/objects/f0/da6ecc5c9095b8d5c9b4a3e91e5155c58af0cd differ
Binary files ./wordpress-3.4.1/.git/objects/f1/8a138b3fa1d75b6532a062ed705bb777f349c1 and ./wordpress-3.4.2/.git/objects/f1/8a138b3fa1d75b6532a062ed705bb777f349c1 differ
Binary files ./wordpress-3.4.1/.git/objects/f1/d9743fd9ef47d05509c49ee302f09213207125 and ./wordpress-3.4.2/.git/objects/f1/d9743fd9ef47d05509c49ee302f09213207125 differ
Binary files ./wordpress-3.4.1/.git/objects/f1/f42b9ac6b5073dd5f9b30adc34589f3fc353cb and ./wordpress-3.4.2/.git/objects/f1/f42b9ac6b5073dd5f9b30adc34589f3fc353cb differ
Binary files ./wordpress-3.4.1/.git/objects/f1/f80c70e40dda736df2cd0f683ea8710d0ea2f6 and ./wordpress-3.4.2/.git/objects/f1/f80c70e40dda736df2cd0f683ea8710d0ea2f6 differ
Binary files ./wordpress-3.4.1/.git/objects/f2/4f420d832f4ac007962e3cbb92972cbc4f490f and ./wordpress-3.4.2/.git/objects/f2/4f420d832f4ac007962e3cbb92972cbc4f490f differ
Binary files ./wordpress-3.4.1/.git/objects/f2/6255fca65dd35677e331dfcd2193c18b2e3457 and ./wordpress-3.4.2/.git/objects/f2/6255fca65dd35677e331dfcd2193c18b2e3457 differ
Binary files ./wordpress-3.4.1/.git/objects/f2/64c0d7719f8649f420fcf88373d9048872aa0d and ./wordpress-3.4.2/.git/objects/f2/64c0d7719f8649f420fcf88373d9048872aa0d differ
Binary files ./wordpress-3.4.1/.git/objects/f2/853708d8f662c022e061aef028a602f5be2602 and ./wordpress-3.4.2/.git/objects/f2/853708d8f662c022e061aef028a602f5be2602 differ
Binary files ./wordpress-3.4.1/.git/objects/f2/c4d3093aeae2da0c158b006a38c6d43cea22a2 and ./wordpress-3.4.2/.git/objects/f2/c4d3093aeae2da0c158b006a38c6d43cea22a2 differ
Binary files ./wordpress-3.4.1/.git/objects/f2/fc024702a801b05be7f45ba13b6a5507da8ad6 and ./wordpress-3.4.2/.git/objects/f2/fc024702a801b05be7f45ba13b6a5507da8ad6 differ
Binary files ./wordpress-3.4.1/.git/objects/f3/1139019e83ef3c1cfa617702c263a7a96d82c9 and ./wordpress-3.4.2/.git/objects/f3/1139019e83ef3c1cfa617702c263a7a96d82c9 differ
Binary files ./wordpress-3.4.1/.git/objects/f3/178fee7449428e91ffbb8eda2da23f33d7df2c and ./wordpress-3.4.2/.git/objects/f3/178fee7449428e91ffbb8eda2da23f33d7df2c differ
Binary files ./wordpress-3.4.1/.git/objects/f3/2574abdb1773f5106e655e53d8a18ac74bfb8e and ./wordpress-3.4.2/.git/objects/f3/2574abdb1773f5106e655e53d8a18ac74bfb8e differ
Binary files ./wordpress-3.4.1/.git/objects/f3/29c86e52698262b18839923fca9165049c139e and ./wordpress-3.4.2/.git/objects/f3/29c86e52698262b18839923fca9165049c139e differ
Binary files ./wordpress-3.4.1/.git/objects/f3/61cf54c1e530da946cba08f7d7a6bd8fe38d96 and ./wordpress-3.4.2/.git/objects/f3/61cf54c1e530da946cba08f7d7a6bd8fe38d96 differ
Binary files ./wordpress-3.4.1/.git/objects/f3/630a112bd6f3cb55b66a5661367b94d4513db0 and ./wordpress-3.4.2/.git/objects/f3/630a112bd6f3cb55b66a5661367b94d4513db0 differ
Binary files ./wordpress-3.4.1/.git/objects/f3/cbe546c54cf5bfc71afb30f810484bfe27200e and ./wordpress-3.4.2/.git/objects/f3/cbe546c54cf5bfc71afb30f810484bfe27200e differ
Binary files ./wordpress-3.4.1/.git/objects/f3/d4b4490223c9429434d9f3cf9842862229bc26 and ./wordpress-3.4.2/.git/objects/f3/d4b4490223c9429434d9f3cf9842862229bc26 differ
Binary files ./wordpress-3.4.1/.git/objects/f4/18745929e79943ab48d10951a2da54b65ad716 and ./wordpress-3.4.2/.git/objects/f4/18745929e79943ab48d10951a2da54b65ad716 differ
Binary files ./wordpress-3.4.1/.git/objects/f4/1ec7fdb1ce6cea159f04d296b71cf69262ee76 and ./wordpress-3.4.2/.git/objects/f4/1ec7fdb1ce6cea159f04d296b71cf69262ee76 differ
Binary files ./wordpress-3.4.1/.git/objects/f4/49ae5025396c72e73d7531b55ae336a525ef21 and ./wordpress-3.4.2/.git/objects/f4/49ae5025396c72e73d7531b55ae336a525ef21 differ
Binary files ./wordpress-3.4.1/.git/objects/f4/af998e334b21468f42da913f356bb1cab6915e and ./wordpress-3.4.2/.git/objects/f4/af998e334b21468f42da913f356bb1cab6915e differ
Binary files ./wordpress-3.4.1/.git/objects/f4/c82f63eb18b5ec70898db60ed3dc24bca03da3 and ./wordpress-3.4.2/.git/objects/f4/c82f63eb18b5ec70898db60ed3dc24bca03da3 differ
Binary files ./wordpress-3.4.1/.git/objects/f4/d4794712d0264a2e960d46b2328a2979b19181 and ./wordpress-3.4.2/.git/objects/f4/d4794712d0264a2e960d46b2328a2979b19181 differ
Binary files ./wordpress-3.4.1/.git/objects/f4/fe306b7d6df4ae483c05f02fa1add92dcbbbb7 and ./wordpress-3.4.2/.git/objects/f4/fe306b7d6df4ae483c05f02fa1add92dcbbbb7 differ
Binary files ./wordpress-3.4.1/.git/objects/f5/05eed8e936627e9e494e7bc53a962b390d591e and ./wordpress-3.4.2/.git/objects/f5/05eed8e936627e9e494e7bc53a962b390d591e differ
Binary files ./wordpress-3.4.1/.git/objects/f5/06cd2bc63ee63fd30307f75082a2e6255272c3 and ./wordpress-3.4.2/.git/objects/f5/06cd2bc63ee63fd30307f75082a2e6255272c3 differ
Binary files ./wordpress-3.4.1/.git/objects/f5/353136f67f2c346763258b9157d06cdbf3053e and ./wordpress-3.4.2/.git/objects/f5/353136f67f2c346763258b9157d06cdbf3053e differ
Binary files ./wordpress-3.4.1/.git/objects/f5/35a1cfc445b2359eae56dba9ac8b22c6f60d2f and ./wordpress-3.4.2/.git/objects/f5/35a1cfc445b2359eae56dba9ac8b22c6f60d2f differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/f5/9674908931d8c67ec8504970fac7f3f795d733 ./wordpress-3.4.2/.git/objects/f5/9674908931d8c67ec8504970fac7f3f795d733
*** ./wordpress-3.4.1/.git/objects/f5/9674908931d8c67ec8504970fac7f3f795d733 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/f5/9674908931d8c67ec8504970fac7f3f795d733 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ x}AK1=WmKUы,.xX1d
٘7zy8=A>gh
+ r2Mt*(iY
X45JN +k㔍_q4pyc}@ʩPNHdIK!6ۋ%)H":ھ{9֞?؝-w4{n__HΆ
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/f5/d2a3eeb0a276621a942ddd635fc17eaca61c5a and ./wordpress-3.4.2/.git/objects/f5/d2a3eeb0a276621a942ddd635fc17eaca61c5a differ
Binary files ./wordpress-3.4.1/.git/objects/f6/4e35417d85b0a198b3db1220648e1f0100b25b and ./wordpress-3.4.2/.git/objects/f6/4e35417d85b0a198b3db1220648e1f0100b25b differ
Binary files ./wordpress-3.4.1/.git/objects/f6/92531f350943319f929e52fe49265863bad52a and ./wordpress-3.4.2/.git/objects/f6/92531f350943319f929e52fe49265863bad52a differ
Binary files ./wordpress-3.4.1/.git/objects/f6/ac9c2e08df92e73099ed30220389e9f4c8589f and ./wordpress-3.4.2/.git/objects/f6/ac9c2e08df92e73099ed30220389e9f4c8589f differ
Binary files ./wordpress-3.4.1/.git/objects/f6/b7454e62e71d300753bd21cd92906fe934e60d and ./wordpress-3.4.2/.git/objects/f6/b7454e62e71d300753bd21cd92906fe934e60d differ
Binary files ./wordpress-3.4.1/.git/objects/f6/ca8a5799e2f49a11a4c96680f246ef55f1a850 and ./wordpress-3.4.2/.git/objects/f6/ca8a5799e2f49a11a4c96680f246ef55f1a850 differ
Binary files ./wordpress-3.4.1/.git/objects/f7/3948cc45ddd487095de9130a38baf71c8e45e1 and ./wordpress-3.4.2/.git/objects/f7/3948cc45ddd487095de9130a38baf71c8e45e1 differ
Binary files ./wordpress-3.4.1/.git/objects/f7/71fc939624e06969800ef8d398351dddcc83f5 and ./wordpress-3.4.2/.git/objects/f7/71fc939624e06969800ef8d398351dddcc83f5 differ
Binary files ./wordpress-3.4.1/.git/objects/f7/a4ede6a73ae3bde16e56bb0845bc171bfc53cb and ./wordpress-3.4.2/.git/objects/f7/a4ede6a73ae3bde16e56bb0845bc171bfc53cb differ
Binary files ./wordpress-3.4.1/.git/objects/f7/d667045447eff43782b6045c11ca423cc4454b and ./wordpress-3.4.2/.git/objects/f7/d667045447eff43782b6045c11ca423cc4454b differ
Binary files ./wordpress-3.4.1/.git/objects/f7/f57927307a9505280398e2c0e9e78b034b36a6 and ./wordpress-3.4.2/.git/objects/f7/f57927307a9505280398e2c0e9e78b034b36a6 differ
Binary files ./wordpress-3.4.1/.git/objects/f8/07fcf2c5eea37c682cf4b14d1fb58eef2e5339 and ./wordpress-3.4.2/.git/objects/f8/07fcf2c5eea37c682cf4b14d1fb58eef2e5339 differ
Binary files ./wordpress-3.4.1/.git/objects/f8/402fb669768c3af99311721b3690e06238b221 and ./wordpress-3.4.2/.git/objects/f8/402fb669768c3af99311721b3690e06238b221 differ
Binary files ./wordpress-3.4.1/.git/objects/f8/59d24e6a6788d5890a02f76f96c81ff2749580 and ./wordpress-3.4.2/.git/objects/f8/59d24e6a6788d5890a02f76f96c81ff2749580 differ
Binary files ./wordpress-3.4.1/.git/objects/f8/646287474ef8b7d7ae09ed154083ceea2bb8f8 and ./wordpress-3.4.2/.git/objects/f8/646287474ef8b7d7ae09ed154083ceea2bb8f8 differ
Binary files ./wordpress-3.4.1/.git/objects/f8/904ceefb7b3fe353592321c1c86224ecb71b60 and ./wordpress-3.4.2/.git/objects/f8/904ceefb7b3fe353592321c1c86224ecb71b60 differ
Binary files ./wordpress-3.4.1/.git/objects/f8/ad22383aa716922cef904a151cadcc001e033d and ./wordpress-3.4.2/.git/objects/f8/ad22383aa716922cef904a151cadcc001e033d differ
Binary files ./wordpress-3.4.1/.git/objects/f8/b17602e31fe5e7bf9e9bed2dcd763afae51a27 and ./wordpress-3.4.2/.git/objects/f8/b17602e31fe5e7bf9e9bed2dcd763afae51a27 differ
Binary files ./wordpress-3.4.1/.git/objects/f8/b4583d4377597961cf46ff3dd05931988458f1 and ./wordpress-3.4.2/.git/objects/f8/b4583d4377597961cf46ff3dd05931988458f1 differ
Binary files ./wordpress-3.4.1/.git/objects/f8/f08c87e7c31e38d6c1b87f775c40a814f68b60 and ./wordpress-3.4.2/.git/objects/f8/f08c87e7c31e38d6c1b87f775c40a814f68b60 differ
Binary files ./wordpress-3.4.1/.git/objects/f9/3f2a429c7c3c1ca92fbfce67f3b742b0a2f03d and ./wordpress-3.4.2/.git/objects/f9/3f2a429c7c3c1ca92fbfce67f3b742b0a2f03d differ
Binary files ./wordpress-3.4.1/.git/objects/f9/55f3499142b5859002c406e35d022314c59d93 and ./wordpress-3.4.2/.git/objects/f9/55f3499142b5859002c406e35d022314c59d93 differ
Binary files ./wordpress-3.4.1/.git/objects/f9/95d57ab228b866180e35bf3948788a8451d4b0 and ./wordpress-3.4.2/.git/objects/f9/95d57ab228b866180e35bf3948788a8451d4b0 differ
Binary files ./wordpress-3.4.1/.git/objects/f9/b624be92ad5b03cb04ac6fd3434f3fcacb476a and ./wordpress-3.4.2/.git/objects/f9/b624be92ad5b03cb04ac6fd3434f3fcacb476a differ
Binary files ./wordpress-3.4.1/.git/objects/fa/62d88964d88f840b04c6feca0db5a24e608a1c and ./wordpress-3.4.2/.git/objects/fa/62d88964d88f840b04c6feca0db5a24e608a1c differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/fa/7b36a1d2c7d4a148f01bf4394b463679f84af8 ./wordpress-3.4.2/.git/objects/fa/7b36a1d2c7d4a148f01bf4394b463679f84af8
*** ./wordpress-3.4.1/.git/objects/fa/7b36a1d2c7d4a148f01bf4394b463679f84af8 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/fa/7b36a1d2c7d4a148f01bf4394b463679f84af8 2012-09-10 14:16:40.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ xmQMo05 Xn[)4+JCr~,NF&Q7W÷ˡlV+jdO%Z9NA[S%q 5A5M w$-57אFκN+%{ljkR%vJ*U+́ [74<ȫ!'[k/,XWBO
ND17pY3^?)̡o',lqQ_IO
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/fa/cae8a86d33c443f0493e92eed7140ae5cf0019 and ./wordpress-3.4.2/.git/objects/fa/cae8a86d33c443f0493e92eed7140ae5cf0019 differ
Binary files ./wordpress-3.4.1/.git/objects/fa/f387032d791c708bf665653c9686260bdff2ad and ./wordpress-3.4.2/.git/objects/fa/f387032d791c708bf665653c9686260bdff2ad differ
Binary files ./wordpress-3.4.1/.git/objects/fb/1f1ee0c275753f0ef986a1278b49b88db76fe7 and ./wordpress-3.4.2/.git/objects/fb/1f1ee0c275753f0ef986a1278b49b88db76fe7 differ
Binary files ./wordpress-3.4.1/.git/objects/fb/4b50330a35c8db2668cb17e9db05f3591d83c7 and ./wordpress-3.4.2/.git/objects/fb/4b50330a35c8db2668cb17e9db05f3591d83c7 differ
Binary files ./wordpress-3.4.1/.git/objects/fb/ebfa151f94f2103bc476dff66a5e02c6521cb9 and ./wordpress-3.4.2/.git/objects/fb/ebfa151f94f2103bc476dff66a5e02c6521cb9 differ
Binary files ./wordpress-3.4.1/.git/objects/fc/0b39437c45e12218bc85c1e6825af00eb092f4 and ./wordpress-3.4.2/.git/objects/fc/0b39437c45e12218bc85c1e6825af00eb092f4 differ
Binary files ./wordpress-3.4.1/.git/objects/fc/9d4f126f10894ea7e8b1edd341857a50138cb9 and ./wordpress-3.4.2/.git/objects/fc/9d4f126f10894ea7e8b1edd341857a50138cb9 differ
Binary files ./wordpress-3.4.1/.git/objects/fc/9f01fe1c3c146abc88f35e413cf50baaf3fd9c and ./wordpress-3.4.2/.git/objects/fc/9f01fe1c3c146abc88f35e413cf50baaf3fd9c differ
Binary files ./wordpress-3.4.1/.git/objects/fc/dd398957b7d3ebd5bca393200e36bce73a1b88 and ./wordpress-3.4.2/.git/objects/fc/dd398957b7d3ebd5bca393200e36bce73a1b88 differ
Binary files ./wordpress-3.4.1/.git/objects/fc/f26f40a505dbc6f0bfbb2ce7d64db365f53154 and ./wordpress-3.4.2/.git/objects/fc/f26f40a505dbc6f0bfbb2ce7d64db365f53154 differ
Binary files ./wordpress-3.4.1/.git/objects/fc/f519c344f0bbb8cdefcbbbd0e5ff4bd0b92abf and ./wordpress-3.4.2/.git/objects/fc/f519c344f0bbb8cdefcbbbd0e5ff4bd0b92abf differ
Binary files ./wordpress-3.4.1/.git/objects/fc/fd80904398d83fcce392ed7ffdda951e224a70 and ./wordpress-3.4.2/.git/objects/fc/fd80904398d83fcce392ed7ffdda951e224a70 differ
Binary files ./wordpress-3.4.1/.git/objects/fd/04898ca5722051df45282b081598b0ebf1d202 and ./wordpress-3.4.2/.git/objects/fd/04898ca5722051df45282b081598b0ebf1d202 differ
Binary files ./wordpress-3.4.1/.git/objects/fd/0e3d4326f6d3b65aad49b04bb9bd8a43f87691 and ./wordpress-3.4.2/.git/objects/fd/0e3d4326f6d3b65aad49b04bb9bd8a43f87691 differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/fd/587a69d3cc9fa2e7a3c078e8e0f591318167ad ./wordpress-3.4.2/.git/objects/fd/587a69d3cc9fa2e7a3c078e8e0f591318167ad
*** ./wordpress-3.4.1/.git/objects/fd/587a69d3cc9fa2e7a3c078e8e0f591318167ad 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/fd/587a69d3cc9fa2e7a3c078e8e0f591318167ad 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,3 ----
+ xMn0O1R6IIEu3a1UP
mhZ,?}yޤR8f`-49.C )Y
cW
+ l.ʠDfsKm%chYO++x
+ s`F*ꄝG[~_ VŕaSr)Dkv=\nDPi L]"ӮefoxJTJ #C9WJyJz
-!O0'.N?ه&gY
\ No newline at end of file
Binary files ./wordpress-3.4.1/.git/objects/fd/6de7d7a7ab67f5e528a9d4478e0adb9270c3a2 and ./wordpress-3.4.2/.git/objects/fd/6de7d7a7ab67f5e528a9d4478e0adb9270c3a2 differ
Binary files ./wordpress-3.4.1/.git/objects/fd/e0af8c76b6b7b621dc0f25849ff31cf55bbc00 and ./wordpress-3.4.2/.git/objects/fd/e0af8c76b6b7b621dc0f25849ff31cf55bbc00 differ
Binary files ./wordpress-3.4.1/.git/objects/fd/f3a08f78d67844201c67db6a0104ded87fd254 and ./wordpress-3.4.2/.git/objects/fd/f3a08f78d67844201c67db6a0104ded87fd254 differ
Binary files ./wordpress-3.4.1/.git/objects/fd/f75f15ecd65d6b00fb86e91444664f9ec85852 and ./wordpress-3.4.2/.git/objects/fd/f75f15ecd65d6b00fb86e91444664f9ec85852 differ
Binary files ./wordpress-3.4.1/.git/objects/fd/fe0b9ac05869ae845fdd828eaad97cc0c69dbc and ./wordpress-3.4.2/.git/objects/fd/fe0b9ac05869ae845fdd828eaad97cc0c69dbc differ
Binary files ./wordpress-3.4.1/.git/objects/fe/0317a261123a4a409144d12e3043d3cf8e09cb and ./wordpress-3.4.2/.git/objects/fe/0317a261123a4a409144d12e3043d3cf8e09cb differ
Binary files ./wordpress-3.4.1/.git/objects/fe/0c27cffd525e26506b799b574bd264089d434e and ./wordpress-3.4.2/.git/objects/fe/0c27cffd525e26506b799b574bd264089d434e differ
Binary files ./wordpress-3.4.1/.git/objects/fe/48d85728ff0337f0fb592bb265930c7c183330 and ./wordpress-3.4.2/.git/objects/fe/48d85728ff0337f0fb592bb265930c7c183330 differ
Binary files ./wordpress-3.4.1/.git/objects/fe/5e19bc87e1b6003218dd295845d5a535758e63 and ./wordpress-3.4.2/.git/objects/fe/5e19bc87e1b6003218dd295845d5a535758e63 differ
Binary files ./wordpress-3.4.1/.git/objects/fe/aed5b47246586c51ffcea8a4be6b58c28ec246 and ./wordpress-3.4.2/.git/objects/fe/aed5b47246586c51ffcea8a4be6b58c28ec246 differ
Binary files ./wordpress-3.4.1/.git/objects/fe/bf7df2913f06c6dbd48a009f4383f6f47b0ced and ./wordpress-3.4.2/.git/objects/fe/bf7df2913f06c6dbd48a009f4383f6f47b0ced differ
Binary files ./wordpress-3.4.1/.git/objects/fe/dac05fdd8cf0cde34632c5882d14f78bcad63c and ./wordpress-3.4.2/.git/objects/fe/dac05fdd8cf0cde34632c5882d14f78bcad63c differ
Binary files ./wordpress-3.4.1/.git/objects/ff/1c4ebc29b3da2e3c65f52cfd20ca4fd596ee47 and ./wordpress-3.4.2/.git/objects/ff/1c4ebc29b3da2e3c65f52cfd20ca4fd596ee47 differ
Binary files ./wordpress-3.4.1/.git/objects/ff/1e91dcebda385b51d6974ae2cea95201c93d80 and ./wordpress-3.4.2/.git/objects/ff/1e91dcebda385b51d6974ae2cea95201c93d80 differ
Binary files ./wordpress-3.4.1/.git/objects/ff/71ea82b47f1252c4b3390b8079242ad610f0ad and ./wordpress-3.4.2/.git/objects/ff/71ea82b47f1252c4b3390b8079242ad610f0ad differ
Binary files ./wordpress-3.4.1/.git/objects/ff/78e83bb3b9b1d3436a07f5523b1add1ae7fcdf and ./wordpress-3.4.2/.git/objects/ff/78e83bb3b9b1d3436a07f5523b1add1ae7fcdf differ
Binary files ./wordpress-3.4.1/.git/objects/ff/e08d86ac09c72b9707563729f55caed001869a and ./wordpress-3.4.2/.git/objects/ff/e08d86ac09c72b9707563729f55caed001869a differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/objects/ff/ea3a0c1f804b452a8a0060594882ad63081466 ./wordpress-3.4.2/.git/objects/ff/ea3a0c1f804b452a8a0060594882ad63081466
*** ./wordpress-3.4.1/.git/objects/ff/ea3a0c1f804b452a8a0060594882ad63081466 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/objects/ff/ea3a0c1f804b452a8a0060594882ad63081466 2012-09-10 14:16:41.000000000 -0500
***************
*** 0 ****
--- 1,2 ----
+ xUN1k+hU6TQ[ }Btlf7^{\eݐ""!9s 56}.&E[Y `2N+!1I_tDc4J;QDUkM,MrO07s_VaW
w;ұBie
C `oDɔgLkvQ(x]r Fc%1Aw^K3M\ޡ\}(xA V=,P &WOBĩ)ն\,7cEq˗NZ6еڗ̦fЖZ`z]pD07
+ 8eMKWL,Wҩ=8ur#*r e`R=l`x~a~4Eg3~&CqB>aZȒ DqL=>;ڤZUNTcSm3h=RLf@Sޓeխ[L@'U˙|jد=E܆YN3l
fíH{7:|Sт/\듖Sf'/?>6QQGna~5z!c4._JFs|5xz}qTfQ̻2r%&i2VH]ɜ>֯Hx^cW>CMNTxE-wb+o-9^Q+eH^e
\ No newline at end of file
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/.git/refs/heads/3.4.2 ./wordpress-3.4.2/.git/refs/heads/3.4.2
*** ./wordpress-3.4.1/.git/refs/heads/3.4.2 1969-12-31 18:00:00.000000000 -0600
--- ./wordpress-3.4.2/.git/refs/heads/3.4.2 2012-09-10 14:16:46.000000000 -0500
***************
*** 0 ****
--- 1 ----
+ d34c49cf9b08c2547427fed783f09dbe7276a2e6
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/readme.html ./wordpress-3.4.2/readme.html
*** ./wordpress-3.4.1/readme.html 2012-08-07 10:59:22.000000000 -0500
--- ./wordpress-3.4.2/readme.html 2012-09-03 18:23:49.000000000 -0500
***************
*** 8,14 ****
! Version 3.4.1
Semantic Personal Publishing Platform
--- 8,14 ----
! Version 3.4.2
Semantic Personal Publishing Platform
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-admin/about.php ./wordpress-3.4.2/wp-admin/about.php
*** ./wordpress-3.4.1/wp-admin/about.php 2012-08-07 10:59:22.000000000 -0500
--- ./wordpress-3.4.2/wp-admin/about.php 2012-09-06 13:15:36.000000000 -0500
***************
*** 34,40 ****
!
Version %1$s addressed some security issues and fixed %2$s bug.',
'Version %1$s addressed some security issues and fixed %2$s bugs.', 21 ), '3.4.1', number_format_i18n( 21 ) ); ?>
the release notes.' ), 'http://codex.wordpress.org/Version_3.4.1' ); ?>
--- 34,45 ----
!
!
Version %1$s addressed some security issues and fixed %2$s bug.',
! 'Version %1$s addressed some security issues and fixed %2$s bugs.', 20 ), '3.4.2', number_format_i18n( 20 ) ); ?>
! the release notes.' ), 'http://codex.wordpress.org/Version_3.4.2' ); ?>
!
!
Version %1$s addressed some security issues and fixed %2$s bug.',
'Version %1$s addressed some security issues and fixed %2$s bugs.', 21 ), '3.4.1', number_format_i18n( 21 ) ); ?>
the release notes.' ), 'http://codex.wordpress.org/Version_3.4.1' ); ?>
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-admin/includes/class-wp-ms-themes-list-table.php ./wordpress-3.4.2/wp-admin/includes/class-wp-ms-themes-list-table.php
*** ./wordpress-3.4.1/wp-admin/includes/class-wp-ms-themes-list-table.php 2012-08-07 10:59:22.000000000 -0500
--- ./wordpress-3.4.2/wp-admin/includes/class-wp-ms-themes-list-table.php 2012-09-04 17:27:52.000000000 -0500
***************
*** 293,299 ****
}
if ( current_user_can('edit_themes') )
! $actions['edit'] = '' . __('Edit') . ' ';
if ( ! $allowed && current_user_can( 'delete_themes' ) && ! $this->is_site_themes && $theme_key != get_option( 'stylesheet' ) && $theme_key != get_option( 'template' ) )
$actions['delete'] = '' . __( 'Delete' ) . ' ';
--- 293,299 ----
}
if ( current_user_can('edit_themes') )
! $actions['edit'] = '' . __('Edit') . ' ';
if ( ! $allowed && current_user_can( 'delete_themes' ) && ! $this->is_site_themes && $theme_key != get_option( 'stylesheet' ) && $theme_key != get_option( 'template' ) )
$actions['delete'] = '' . __( 'Delete' ) . ' ';
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-admin/includes/class-wp-plugins-list-table.php ./wordpress-3.4.2/wp-admin/includes/class-wp-plugins-list-table.php
*** ./wordpress-3.4.1/wp-admin/includes/class-wp-plugins-list-table.php 2012-08-07 10:59:22.000000000 -0500
--- ./wordpress-3.4.2/wp-admin/includes/class-wp-plugins-list-table.php 2012-09-04 15:53:05.000000000 -0500
***************
*** 90,96 ****
foreach ( (array) $plugins['all'] as $plugin_file => $plugin_data ) {
// Filter into individual sections
! if ( ! $screen->is_network && is_plugin_active_for_network( $plugin_file ) ) {
unset( $plugins['all'][ $plugin_file ] );
} elseif ( ( ! $screen->is_network && is_plugin_active( $plugin_file ) )
|| ( $screen->is_network && is_plugin_active_for_network( $plugin_file ) ) ) {
--- 90,98 ----
foreach ( (array) $plugins['all'] as $plugin_file => $plugin_data ) {
// Filter into individual sections
! if ( is_multisite() && ! $screen->is_network && is_network_only_plugin( $plugin_file ) ) {
! unset( $plugins['all'][ $plugin_file ] );
! } elseif ( ! $screen->is_network && is_plugin_active_for_network( $plugin_file ) ) {
unset( $plugins['all'][ $plugin_file ] );
} elseif ( ( ! $screen->is_network && is_plugin_active( $plugin_file ) )
|| ( $screen->is_network && is_plugin_active_for_network( $plugin_file ) ) ) {
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-admin/includes/class-wp-themes-list-table.php ./wordpress-3.4.2/wp-admin/includes/class-wp-themes-list-table.php
*** ./wordpress-3.4.1/wp-admin/includes/class-wp-themes-list-table.php 2012-08-07 10:59:22.000000000 -0500
--- ./wordpress-3.4.2/wp-admin/includes/class-wp-themes-list-table.php 2012-09-04 17:27:52.000000000 -0500
***************
*** 128,134 ****
$activate_link = wp_nonce_url( "themes.php?action=activate&template=" . urlencode( $template ) . "&stylesheet=" . urlencode( $stylesheet ), 'switch-theme_' . $stylesheet );
$preview_link = esc_url( add_query_arg(
! array( 'preview' => 1, 'template' => $template, 'stylesheet' => $stylesheet, 'preview_iframe' => true, 'TB_iframe' => 'true' ),
home_url( '/' ) ) );
$actions = array();
--- 128,134 ----
$activate_link = wp_nonce_url( "themes.php?action=activate&template=" . urlencode( $template ) . "&stylesheet=" . urlencode( $stylesheet ), 'switch-theme_' . $stylesheet );
$preview_link = esc_url( add_query_arg(
! array( 'preview' => 1, 'template' => urlencode( $template ), 'stylesheet' => urlencode( $stylesheet ), 'preview_iframe' => true, 'TB_iframe' => 'true' ),
home_url( '/' ) ) );
$actions = array();
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-admin/includes/class-wp-upgrader.php ./wordpress-3.4.2/wp-admin/includes/class-wp-upgrader.php
*** ./wordpress-3.4.1/wp-admin/includes/class-wp-upgrader.php 2012-08-07 10:59:22.000000000 -0500
--- ./wordpress-3.4.2/wp-admin/includes/class-wp-upgrader.php 2012-09-04 17:27:52.000000000 -0500
***************
*** 1507,1520 ****
$preview_link = add_query_arg( array(
'preview' => 1,
! 'template' => $template,
! 'stylesheet' => $stylesheet,
), trailingslashit( get_home_url() ) );
$activate_link = add_query_arg( array(
'action' => 'activate',
! 'template' => $template,
! 'stylesheet' => $stylesheet,
), admin_url('themes.php') );
$activate_link = wp_nonce_url( $activate_link, 'switch-theme_' . $stylesheet );
--- 1507,1520 ----
$preview_link = add_query_arg( array(
'preview' => 1,
! 'template' => urlencode( $template ),
! 'stylesheet' => urlencode( $stylesheet ),
), trailingslashit( get_home_url() ) );
$activate_link = add_query_arg( array(
'action' => 'activate',
! 'template' => urlencode( $template ),
! 'stylesheet' => urlencode( $stylesheet ),
), admin_url('themes.php') );
$activate_link = wp_nonce_url( $activate_link, 'switch-theme_' . $stylesheet );
***************
*** 1571,1584 ****
$preview_link = add_query_arg( array(
'preview' => 1,
! 'template' => $template,
! 'stylesheet' => $stylesheet,
), trailingslashit( get_home_url() ) );
$activate_link = add_query_arg( array(
'action' => 'activate',
! 'template' => $template,
! 'stylesheet' => $stylesheet,
), admin_url('themes.php') );
$activate_link = wp_nonce_url( $activate_link, 'switch-theme_' . $stylesheet );
--- 1571,1584 ----
$preview_link = add_query_arg( array(
'preview' => 1,
! 'template' => urlencode( $template ),
! 'stylesheet' => urlencode( $stylesheet ),
), trailingslashit( get_home_url() ) );
$activate_link = add_query_arg( array(
'action' => 'activate',
! 'template' => urlencode( $template ),
! 'stylesheet' => urlencode( $stylesheet ),
), admin_url('themes.php') );
$activate_link = wp_nonce_url( $activate_link, 'switch-theme_' . $stylesheet );
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-admin/includes/meta-boxes.php ./wordpress-3.4.2/wp-admin/includes/meta-boxes.php
*** ./wordpress-3.4.1/wp-admin/includes/meta-boxes.php 2012-08-07 10:59:22.000000000 -0500
--- ./wordpress-3.4.2/wp-admin/includes/meta-boxes.php 2012-09-03 22:17:11.000000000 -0500
***************
*** 688,694 ****
!
--- 688,694 ----
!
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-admin/includes/update-core.php ./wordpress-3.4.2/wp-admin/includes/update-core.php
*** ./wordpress-3.4.1/wp-admin/includes/update-core.php 2012-08-07 10:59:22.000000000 -0500
--- ./wordpress-3.4.2/wp-admin/includes/update-core.php 2012-09-03 18:23:49.000000000 -0500
***************
*** 477,483 ****
$mysql_version = $wpdb->db_version();
$required_php_version = '5.2.4';
$required_mysql_version = '5.0';
! $wp_version = '3.4.1';
$php_compat = version_compare( $php_version, $required_php_version, '>=' );
if ( file_exists( WP_CONTENT_DIR . '/db.php' ) && empty( $wpdb->is_mysql ) )
$mysql_compat = true;
--- 477,483 ----
$mysql_version = $wpdb->db_version();
$required_php_version = '5.2.4';
$required_mysql_version = '5.0';
! $wp_version = '3.4.2';
$php_compat = version_compare( $php_version, $required_php_version, '>=' );
if ( file_exists( WP_CONTENT_DIR . '/db.php' ) && empty( $wpdb->is_mysql ) )
$mysql_compat = true;
***************
*** 680,686 ****
function _redirect_to_about_wordpress( $new_version ) {
global $wp_version, $pagenow, $action;
! if ( version_compare( $wp_version, '3.4-RC1', '>=' ) )
return;
// Ensure we only run this on the update-core.php page. wp_update_core() could be called in other contexts.
--- 680,686 ----
function _redirect_to_about_wordpress( $new_version ) {
global $wp_version, $pagenow, $action;
! if ( version_compare( $wp_version, '3.5-alpha', '>=' ) )
return;
// Ensure we only run this on the update-core.php page. wp_update_core() could be called in other contexts.
***************
*** 695,706 ****
// See do_core_upgrade()
show_message( __('WordPress updated successfully') );
! show_message( '
' . sprintf( __( 'Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here .' ), $new_version, esc_url( self_admin_url( 'about.php?updated' ) ) ) . ' ' );
! show_message( '
' . sprintf( __( 'Welcome to WordPress %1$s. Learn more .' ), $new_version, esc_url( self_admin_url( 'about.php?updated' ) ) ) . ' ' );
echo '
';
?>
here.' );
! $js_message = str_replace( '"%s"', '"%2$s"', $js_message ); // in lieu of breaking the string.
!
! // self_admin_url() won't exist when upgrading from <= 3.0, so relative URLs are intentional.
! show_message( '
' . sprintf( $js_message, $new_version, 'about.php?updated' ) . ' ' );
! show_message( '
' . sprintf( __( 'Welcome to WordPress %1$s. Learn more .' ), $new_version, 'about.php?updated' ) . ' ' );
echo '
';
?>
' . __( 'Welcome to your WordPress Dashboard! This is the screen you will see when you log in to your site, and gives you access to all the site management features of WordPress. You can get help for any screen by clicking the Help tab in the upper corner.' ) . '
';
! get_current_screen()->add_help_tab( array(
'id' => 'overview',
'title' => __( 'Overview' ),
'content' => $help,
--- 34,43 ----
$help = '' . __( 'Welcome to your WordPress Dashboard! This is the screen you will see when you log in to your site, and gives you access to all the site management features of WordPress. You can get help for any screen by clicking the Help tab in the upper corner.' ) . '
';
! // Not using chaining here, so as to be parseable by PHP4.
! $screen = get_current_screen();
!
! $screen->add_help_tab( array(
'id' => 'overview',
'title' => __( 'Overview' ),
'content' => $help,
***************
*** 43,49 ****
$help = '' . __('The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom.') . '
';
$help .= '' . __('Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information.') . '
';
! get_current_screen()->add_help_tab( array(
'id' => 'help-navigation',
'title' => __('Navigation'),
'content' => $help,
--- 48,54 ----
$help = '' . __('The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom.') . '
';
$help .= '' . __('Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information.') . '
';
! $screen->add_help_tab( array(
'id' => 'help-navigation',
'title' => __('Navigation'),
'content' => $help,
***************
*** 54,60 ****
$help .= '' . __('Drag and Drop - To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box.') . '
';
$help .= '' . __('Box Controls - Click the title bar of the box to expand or collapse it. In addition, some box have configurable content, and will show a “Configure” link in the title bar if you hover over it.') . '
';
! get_current_screen()->add_help_tab( array(
'id' => 'help-layout',
'title' => __('Layout'),
'content' => $help,
--- 59,65 ----
$help .= '' . __('Drag and Drop - To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box.') . '
';
$help .= '' . __('Box Controls - Click the title bar of the box to expand or collapse it. In addition, some box have configurable content, and will show a “Configure” link in the title bar if you hover over it.') . '
';
! $screen->add_help_tab( array(
'id' => 'help-layout',
'title' => __('Layout'),
'content' => $help,
***************
*** 78,84 ****
if ( current_user_can( 'edit_theme_options' ) )
$help .= '' . __('Welcome - Shows links for some of the most common tasks when setting up a new site.') . '
';
! get_current_screen()->add_help_tab( array(
'id' => 'help-content',
'title' => __('Content'),
'content' => $help,
--- 83,89 ----
if ( current_user_can( 'edit_theme_options' ) )
$help .= '' . __('Welcome - Shows links for some of the most common tasks when setting up a new site.') . '
';
! $screen->add_help_tab( array(
'id' => 'help-content',
'title' => __('Content'),
'content' => $help,
***************
*** 86,92 ****
unset( $help );
! get_current_screen()->set_help_sidebar(
'' . __( 'For more information:' ) . '
' .
'' . __( 'Documentation on Dashboard ' ) . '
' .
'' . __( 'Support Forums ' ) . '
'
--- 91,97 ----
unset( $help );
! $screen->set_help_sidebar(
'' . __( 'For more information:' ) . '
' .
'' . __( 'Documentation on Dashboard ' ) . '
' .
'' . __( 'Support Forums ' ) . '
'
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-admin/js/customize-controls.dev.js ./wordpress-3.4.2/wp-admin/js/customize-controls.dev.js
*** ./wordpress-3.4.1/wp-admin/js/customize-controls.dev.js 2012-08-07 10:59:22.000000000 -0500
--- ./wordpress-3.4.2/wp-admin/js/customize-controls.dev.js 2012-09-03 23:54:01.000000000 -0500
***************
*** 220,229 ****
};
});
- // Select a tab
- this.selected = this.tabs[ panels.first().data('customizeTab') ];
- this.selected.both.addClass('library-selected');
-
// Bind tab switch events
this.library.children('ul').on( 'click', 'li', function( event ) {
var id = $(this).data('customizeTab'),
--- 220,225 ----
***************
*** 255,260 ****
--- 251,268 ----
this.tabs.uploaded.both.addClass('hidden');
}
+ // Select a tab
+ panels.each( function() {
+ var tab = control.tabs[ $(this).data('customizeTab') ];
+
+ // Select the first visible tab.
+ if ( ! tab.link.hasClass('hidden') ) {
+ control.selected = tab;
+ tab.both.addClass('library-selected');
+ return false;
+ }
+ });
+
this.dropdownInit();
},
success: function( attachment ) {
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-admin/js/customize-controls.js ./wordpress-3.4.2/wp-admin/js/customize-controls.js
*** ./wordpress-3.4.1/wp-admin/js/customize-controls.js 2012-08-07 10:59:22.000000000 -0500
--- ./wordpress-3.4.2/wp-admin/js/customize-controls.js 2012-09-04 20:55:55.000000000 -0500
***************
*** 1 ****
! (function(a,c){var b=wp.customize;b.Setting=b.Value.extend({initialize:function(g,f,d){var e;b.Value.prototype.initialize.call(this,f,d);this.id=g;this.transport=this.transport||"refresh";this.bind(this.preview)},preview:function(){switch(this.transport){case"refresh":return this.previewer.refresh();case"postMessage":return this.previewer.send("setting",[this.id,this()])}}});b.Control=b.Class.extend({initialize:function(i,e){var g=this,d,h,f;this.params={};c.extend(this,e||{});this.id=i;this.selector="#customize-control-"+i.replace("]","").replace("[","-");this.container=c(this.selector);f=c.map(this.params.settings,function(j){return j});b.apply(b,f.concat(function(){var j;g.settings={};for(j in g.params.settings){g.settings[j]=b(g.params.settings[j])}g.setting=g.settings["default"]||null;g.ready()}));g.elements=[];d=this.container.find("[data-customize-setting-link]");h={};d.each(function(){var k=c(this),j;if(k.is(":radio")){j=k.prop("name");if(h[j]){return}h[j]=true;k=d.filter('[name="'+j+'"]')}b(k.data("customizeSettingLink"),function(m){var l=new b.Element(k);g.elements.push(l);l.sync(m);l.set(m())})})},ready:function(){},dropdownInit:function(){var e=this,d=this.container.find(".dropdown-status"),f=this.params,g=function(h){if(typeof h==="string"&&f.statuses&&f.statuses[h]){d.html(f.statuses[h]).show()}else{d.hide()}};this.container.on("click",".dropdown",function(h){h.preventDefault();e.container.toggleClass("open")});this.setting.bind(g);g(this.setting())}});b.ColorControl=b.Control.extend({ready:function(){var g=this,f,e,d,h,i;f=/^#([A-Fa-f0-9]{3}){0,2}$/;e=this.container.find(".dropdown-content");d=new b.Element(this.container.find(".color-picker-hex"));i=function(j){e.css("background",j);g.farbtastic.setColor(j)};this.farbtastic=c.farbtastic(this.container.find(".farbtastic-placeholder"),g.setting.set);d.sync(this.setting).validate=function(j){return f.test(j)?j:null};this.setting.bind(i);i(this.setting());this.dropdownInit()}});b.UploadControl=b.Control.extend({ready:function(){var d=this;this.params.removed=this.params.removed||"";this.success=c.proxy(this.success,this);this.uploader=c.extend({container:this.container,browser:this.container.find(".upload"),dropzone:this.container.find(".upload-dropzone"),success:this.success},this.uploader||{});if(this.uploader.supported){if(d.params.context){d.uploader.param("post_data[context]",this.params.context)}d.uploader.param("post_data[theme]",b.settings.theme.stylesheet)}this.uploader=new wp.Uploader(this.uploader);this.remover=this.container.find(".remove");this.remover.click(function(e){d.setting.set(d.params.removed);e.preventDefault()});this.removerVisibility=c.proxy(this.removerVisibility,this);this.setting.bind(this.removerVisibility);this.removerVisibility(this.setting.get())},success:function(d){this.setting.set(d.url)},removerVisibility:function(d){this.remover.toggle(d!=this.params.removed)}});b.ImageControl=b.UploadControl.extend({ready:function(){var e=this,d;this.uploader={init:function(f){var h,g;if(this.supports.dragdrop){return}h=e.container.find(".upload-fallback");g=h.children().detach();this.browser.detach().empty().append(g);h.append(this.browser).show()}};b.UploadControl.prototype.ready.call(this);this.thumbnail=this.container.find(".preview-thumbnail img");this.thumbnailSrc=c.proxy(this.thumbnailSrc,this);this.setting.bind(this.thumbnailSrc);this.library=this.container.find(".library");this.tabs={};d=this.library.find(".library-content");this.library.children("ul").children("li").each(function(){var g=c(this),h=g.data("customizeTab"),f=d.filter('[data-customize-tab="'+h+'"]');e.tabs[h]={both:g.add(f),link:g,panel:f}});this.selected=this.tabs[d.first().data("customizeTab")];this.selected.both.addClass("library-selected");this.library.children("ul").on("click","li",function(g){var h=c(this).data("customizeTab"),f=e.tabs[h];g.preventDefault();if(f.link.hasClass("library-selected")){return}e.selected.both.removeClass("library-selected");e.selected=f;e.selected.both.addClass("library-selected")});this.library.on("click","a",function(f){var g=c(this).data("customizeImageValue");if(g){e.setting.set(g);f.preventDefault()}});if(this.tabs.uploaded){this.tabs.uploaded.target=this.library.find(".uploaded-target");if(!this.tabs.uploaded.panel.find(".thumbnail").length){this.tabs.uploaded.both.addClass("hidden")}}this.dropdownInit()},success:function(d){b.UploadControl.prototype.success.call(this,d);if(this.tabs.uploaded&&this.tabs.uploaded.target.length){this.tabs.uploaded.both.removeClass("hidden");d.element=c(' ').data("customizeImageValue",d.url).append(' ').appendTo(this.tabs.uploaded.target)}},thumbnailSrc:function(d){if(/^(https?:)?\/\//.test(d)){this.thumbnail.prop("src",d).show()}else{this.thumbnail.hide()}}});b.defaultConstructor=b.Setting;b.control=new b.Values({defaultConstructor:b.Control});b.PreviewFrame=b.Messenger.extend({sensitivity:2000,initialize:function(g,f){var e=c.Deferred(),d=this;e.promise(this);this.container=g.container;this.signature=g.signature;c.extend(g,{channel:b.PreviewFrame.uuid()});b.Messenger.prototype.initialize.call(this,g,f);this.add("previewUrl",g.previewUrl);this.query=c.extend(g.query||{},{customize_messenger_channel:this.channel()});this.run(e)},run:function(e){var d=this,f=false,g=false;if(this._ready){this.unbind("ready",this._ready)}this._ready=function(){g=true;if(f){e.resolveWith(d)}};this.bind("ready",this._ready);this.request=c.ajax(this.previewUrl(),{type:"POST",data:this.query,xhrFields:{withCredentials:true}});this.request.fail(function(){e.rejectWith(d,["request failure"])});this.request.done(function(j){var i=d.request.getResponseHeader("Location"),h=d.signature,k;if(i&&i!=d.previewUrl()){e.rejectWith(d,["redirect",i]);return}if("0"===j){d.login(e);return}if("-1"===j){e.rejectWith(d,["cheatin"]);return}k=j.lastIndexOf(h);if(-1===k||k")){e.rejectWith(d,["unsigned"]);return}j=j.slice(0,k)+j.slice(k+h.length);d.iframe=c("").appendTo(d.container);d.iframe.one("load",function(){f=true;if(g){e.resolveWith(d)}else{setTimeout(function(){e.rejectWith(d,["ready timeout"])},d.sensitivity)}});d.targetWindow(d.iframe[0].contentWindow);d.targetWindow().document.open();d.targetWindow().document.write(j);d.targetWindow().document.close()})},login:function(e){var d=this,f;f=function(){e.rejectWith(d,["logged out"])};if(this.triedLogin){return f()}c.get(b.settings.url.ajax,{action:"logged-in"}).fail(f).done(function(g){var h;if("1"!==g){f()}h=c('').hide();h.appendTo(d.container);h.load(function(){d.triedLogin=true;h.remove();d.run(e)})})},destroy:function(){b.Messenger.prototype.destroy.call(this);this.request.abort();if(this.iframe){this.iframe.remove()}delete this.request;delete this.iframe;delete this.targetWindow}});(function(){var d=0;b.PreviewFrame.uuid=function(){return"preview-"+d++}}());b.Previewer=b.Messenger.extend({refreshBuffer:250,initialize:function(h,f){var d=this,g=/^https?/,e;c.extend(this,f||{});this.refresh=(function(i){var j=i.refresh,l=function(){k=null;j.call(i)},k;return function(){if(typeof k!=="number"){if(i.loading){i.abort()}else{return l()}}clearTimeout(k);k=setTimeout(l,i.refreshBuffer)}})(this);this.container=b.ensure(h.container);this.allowedUrls=h.allowedUrls;this.signature=h.signature;h.url=window.location.href;b.Messenger.prototype.initialize.call(this,h);this.add("scheme",this.origin()).link(this.origin).setter(function(j){var i=j.match(g);return i?i[0]:""});this.add("previewUrl",h.previewUrl).setter(function(j){var i;if(/\/wp-admin(\/|$)/.test(j.replace(/[#?].*$/,""))){return null}c.each([j.replace(g,d.scheme()),j],function(l,k){c.each(d.allowedUrls,function(m,n){if(0===k.indexOf(n)){i=k;return false}});if(i){return false}});return i?i:null});this.previewUrl.bind(this.refresh);this.scroll=0;this.bind("scroll",function(i){this.scroll=i});this.bind("url",this.previewUrl)},query:function(){},abort:function(){if(this.loading){this.loading.destroy();delete this.loading}},refresh:function(){var d=this;this.abort();this.loading=new b.PreviewFrame({url:this.url(),previewUrl:this.previewUrl(),query:this.query()||{},container:this.container,signature:this.signature});this.loading.done(function(){this.bind("synced",function(){if(d.preview){d.preview.destroy()}d.preview=this;delete d.loading;d.targetWindow(this.targetWindow());d.channel(this.channel());d.send("active")});this.send("sync",{scroll:d.scroll,settings:b.get()})});this.loading.fail(function(f,e){if("redirect"===f&&e){d.previewUrl(e)}if("logged out"===f){if(d.preview){d.preview.destroy();delete d.preview}d.login().done(d.refresh)}if("cheatin"===f){d.cheatin()}})},login:function(){var g=this,d,f,e;if(this._login){return this._login}d=c.Deferred();this._login=d.promise();f=new b.Messenger({channel:"login",url:b.settings.url.login});e=c('').appendTo(this.container);f.targetWindow(e[0].contentWindow);f.bind("login",function(){e.remove();f.destroy();delete g._login;d.resolve()});return this._login},cheatin:function(){c(document.body).empty().addClass("cheatin").append(""+b.l10n.cheatin+"
")}});b.controlConstructor={color:b.ColorControl,upload:b.UploadControl,image:b.ImageControl};c(function(){b.settings=window._wpCustomizeSettings;b.l10n=window._wpCustomizeControlsL10n;if(!b.settings){return}if(!c.support.postMessage||(!c.support.cors&&b.settings.isCrossDomain)){return window.location=b.settings.url.fallback}var d=c(document.body),e=d.children(".wp-full-overlay"),g,h,f;c("#customize-controls").on("keydown",function(i){if(c(i.target).is("textarea")){return}if(13===i.which){i.preventDefault()}});h=new b.Previewer({container:"#customize-preview",form:"#customize-controls",previewUrl:b.settings.url.preview,allowedUrls:b.settings.url.allowed,signature:"WP_CUSTOMIZER_SIGNATURE"},{nonce:b.settings.nonce,query:function(){return{wp_customize:"on",theme:b.settings.theme.stylesheet,customized:JSON.stringify(b.get()),nonce:this.nonce.preview}},save:function(){var i=this,k=c.extend(this.query(),{action:"customize_save",nonce:this.nonce.save}),j=c.post(b.settings.url.ajax,k);b.trigger("save",j);d.addClass("saving");j.always(function(){d.removeClass("saving")});j.done(function(l){if("0"===l){i.preview.iframe.hide();i.login().done(function(){i.save();i.preview.iframe.show()});return}if("-1"===l){i.cheatin();return}b.trigger("saved")})}});h.bind("nonce",function(i){c.extend(this.nonce,i)});c.each(b.settings.settings,function(j,i){b.create(j,j,i.value,{transport:i.transport,previewer:h})});c.each(b.settings.controls,function(l,j){var i=b.controlConstructor[j.type]||b.Control,k;k=b.control.add(l,new i(l,{params:j,previewer:h}))});if(h.previewUrl()){h.refresh()}else{h.previewUrl(b.settings.url.home)}(function(){var k=new b.Values(),j=k.create("saved"),i=k.create("activated");k.bind("change",function(){var m=c("#save"),l=c(".back");if(!i()){m.val(b.l10n.activate).prop("disabled",false);l.text(b.l10n.cancel)}else{if(j()){m.val(b.l10n.saved).prop("disabled",true);l.text(b.l10n.close)}else{m.val(b.l10n.save).prop("disabled",false);l.text(b.l10n.cancel)}}});j(true);i(b.settings.theme.active);b.bind("change",function(){k("saved").set(false)});b.bind("saved",function(){k("saved").set(true);k("activated").set(true)});i.bind(function(l){if(l){b.trigger("activated")}});b.state=k}());c(".customize-section-title").click(function(j){var i=c(this).parents(".customize-section");if(i.hasClass("cannot-expand")){return}c(".customize-section").not(i).removeClass("open");i.toggleClass("open");j.preventDefault()});c("#save").click(function(i){h.save();i.preventDefault()});c(".collapse-sidebar").click(function(i){e.toggleClass("collapsed").toggleClass("expanded");i.preventDefault()});f=new b.Messenger({url:b.settings.url.parent,channel:"loader"});f.bind("back",function(){c(".back").on("click.back",function(i){i.preventDefault();f.send("close")})});b.bind("saved",function(){f.send("saved")});b.bind("activated",function(){if(f.targetWindow()){f.send("activated",b.settings.url.activated)}else{if(b.settings.url.activated){window.location=b.settings.url.activated}}});f.send("ready");c.each({background_image:{controls:["background_repeat","background_position_x","background_attachment"],callback:function(i){return !!i}},show_on_front:{controls:["page_on_front","page_for_posts"],callback:function(i){return"page"===i}},header_textcolor:{controls:["header_textcolor"],callback:function(i){return"blank"!==i}}},function(i,j){b(i,function(k){c.each(j.controls,function(l,m){b.control(m,function(o){var n=function(p){o.container.toggle(j.callback(p))};n(k.get());k.bind(n)})})})});b.control("display_header_text",function(j){var i="";j.elements[0].unsync(b("header_textcolor"));j.element=new b.Element(j.container.find("input"));j.element.set("blank"!==j.setting());j.element.bind(function(k){if(!k){i=b("header_textcolor").get()}j.setting.set(k?i:"blank")});j.setting.bind(function(k){j.element.set("blank"!==k)})});b.control("header_image",function(i){i.setting.bind(function(j){if(j===i.params.removed){i.settings.data.set(false)}});i.library.on("click","a",function(j){i.settings.data.set(c(this).data("customizeHeaderImageData"))});i.uploader.success=function(k){var j;b.ImageControl.prototype.success.call(i,k);j={attachment_id:k.id,url:k.url,thumbnail_url:k.url,height:k.meta.height,width:k.meta.width};k.element.data("customizeHeaderImageData",j);i.settings.data.set(j)}});b.trigger("ready")})})(wp,jQuery);
\ No newline at end of file
--- 1 ----
! (function(a,c){var b=wp.customize;b.Setting=b.Value.extend({initialize:function(g,f,d){var e;b.Value.prototype.initialize.call(this,f,d);this.id=g;this.transport=this.transport||"refresh";this.bind(this.preview)},preview:function(){switch(this.transport){case"refresh":return this.previewer.refresh();case"postMessage":return this.previewer.send("setting",[this.id,this()])}}});b.Control=b.Class.extend({initialize:function(i,e){var g=this,d,h,f;this.params={};c.extend(this,e||{});this.id=i;this.selector="#customize-control-"+i.replace("]","").replace("[","-");this.container=c(this.selector);f=c.map(this.params.settings,function(j){return j});b.apply(b,f.concat(function(){var j;g.settings={};for(j in g.params.settings){g.settings[j]=b(g.params.settings[j])}g.setting=g.settings["default"]||null;g.ready()}));g.elements=[];d=this.container.find("[data-customize-setting-link]");h={};d.each(function(){var k=c(this),j;if(k.is(":radio")){j=k.prop("name");if(h[j]){return}h[j]=true;k=d.filter('[name="'+j+'"]')}b(k.data("customizeSettingLink"),function(m){var l=new b.Element(k);g.elements.push(l);l.sync(m);l.set(m())})})},ready:function(){},dropdownInit:function(){var e=this,d=this.container.find(".dropdown-status"),f=this.params,g=function(h){if(typeof h==="string"&&f.statuses&&f.statuses[h]){d.html(f.statuses[h]).show()}else{d.hide()}};this.container.on("click",".dropdown",function(h){h.preventDefault();e.container.toggleClass("open")});this.setting.bind(g);g(this.setting())}});b.ColorControl=b.Control.extend({ready:function(){var g=this,f,e,d,h,i;f=/^#([A-Fa-f0-9]{3}){0,2}$/;e=this.container.find(".dropdown-content");d=new b.Element(this.container.find(".color-picker-hex"));i=function(j){e.css("background",j);g.farbtastic.setColor(j)};this.farbtastic=c.farbtastic(this.container.find(".farbtastic-placeholder"),g.setting.set);d.sync(this.setting).validate=function(j){return f.test(j)?j:null};this.setting.bind(i);i(this.setting());this.dropdownInit()}});b.UploadControl=b.Control.extend({ready:function(){var d=this;this.params.removed=this.params.removed||"";this.success=c.proxy(this.success,this);this.uploader=c.extend({container:this.container,browser:this.container.find(".upload"),dropzone:this.container.find(".upload-dropzone"),success:this.success},this.uploader||{});if(this.uploader.supported){if(d.params.context){d.uploader.param("post_data[context]",this.params.context)}d.uploader.param("post_data[theme]",b.settings.theme.stylesheet)}this.uploader=new wp.Uploader(this.uploader);this.remover=this.container.find(".remove");this.remover.click(function(e){d.setting.set(d.params.removed);e.preventDefault()});this.removerVisibility=c.proxy(this.removerVisibility,this);this.setting.bind(this.removerVisibility);this.removerVisibility(this.setting.get())},success:function(d){this.setting.set(d.url)},removerVisibility:function(d){this.remover.toggle(d!=this.params.removed)}});b.ImageControl=b.UploadControl.extend({ready:function(){var e=this,d;this.uploader={init:function(f){var h,g;if(this.supports.dragdrop){return}h=e.container.find(".upload-fallback");g=h.children().detach();this.browser.detach().empty().append(g);h.append(this.browser).show()}};b.UploadControl.prototype.ready.call(this);this.thumbnail=this.container.find(".preview-thumbnail img");this.thumbnailSrc=c.proxy(this.thumbnailSrc,this);this.setting.bind(this.thumbnailSrc);this.library=this.container.find(".library");this.tabs={};d=this.library.find(".library-content");this.library.children("ul").children("li").each(function(){var g=c(this),h=g.data("customizeTab"),f=d.filter('[data-customize-tab="'+h+'"]');e.tabs[h]={both:g.add(f),link:g,panel:f}});this.library.children("ul").on("click","li",function(g){var h=c(this).data("customizeTab"),f=e.tabs[h];g.preventDefault();if(f.link.hasClass("library-selected")){return}e.selected.both.removeClass("library-selected");e.selected=f;e.selected.both.addClass("library-selected")});this.library.on("click","a",function(f){var g=c(this).data("customizeImageValue");if(g){e.setting.set(g);f.preventDefault()}});if(this.tabs.uploaded){this.tabs.uploaded.target=this.library.find(".uploaded-target");if(!this.tabs.uploaded.panel.find(".thumbnail").length){this.tabs.uploaded.both.addClass("hidden")}}d.each(function(){var f=e.tabs[c(this).data("customizeTab")];if(!f.link.hasClass("hidden")){e.selected=f;f.both.addClass("library-selected");return false}});this.dropdownInit()},success:function(d){b.UploadControl.prototype.success.call(this,d);if(this.tabs.uploaded&&this.tabs.uploaded.target.length){this.tabs.uploaded.both.removeClass("hidden");d.element=c(' ').data("customizeImageValue",d.url).append(' ').appendTo(this.tabs.uploaded.target)}},thumbnailSrc:function(d){if(/^(https?:)?\/\//.test(d)){this.thumbnail.prop("src",d).show()}else{this.thumbnail.hide()}}});b.defaultConstructor=b.Setting;b.control=new b.Values({defaultConstructor:b.Control});b.PreviewFrame=b.Messenger.extend({sensitivity:2000,initialize:function(g,f){var e=c.Deferred(),d=this;e.promise(this);this.container=g.container;this.signature=g.signature;c.extend(g,{channel:b.PreviewFrame.uuid()});b.Messenger.prototype.initialize.call(this,g,f);this.add("previewUrl",g.previewUrl);this.query=c.extend(g.query||{},{customize_messenger_channel:this.channel()});this.run(e)},run:function(e){var d=this,f=false,g=false;if(this._ready){this.unbind("ready",this._ready)}this._ready=function(){g=true;if(f){e.resolveWith(d)}};this.bind("ready",this._ready);this.request=c.ajax(this.previewUrl(),{type:"POST",data:this.query,xhrFields:{withCredentials:true}});this.request.fail(function(){e.rejectWith(d,["request failure"])});this.request.done(function(j){var i=d.request.getResponseHeader("Location"),h=d.signature,k;if(i&&i!=d.previewUrl()){e.rejectWith(d,["redirect",i]);return}if("0"===j){d.login(e);return}if("-1"===j){e.rejectWith(d,["cheatin"]);return}k=j.lastIndexOf(h);if(-1===k||k")){e.rejectWith(d,["unsigned"]);return}j=j.slice(0,k)+j.slice(k+h.length);d.iframe=c("").appendTo(d.container);d.iframe.one("load",function(){f=true;if(g){e.resolveWith(d)}else{setTimeout(function(){e.rejectWith(d,["ready timeout"])},d.sensitivity)}});d.targetWindow(d.iframe[0].contentWindow);d.targetWindow().document.open();d.targetWindow().document.write(j);d.targetWindow().document.close()})},login:function(e){var d=this,f;f=function(){e.rejectWith(d,["logged out"])};if(this.triedLogin){return f()}c.get(b.settings.url.ajax,{action:"logged-in"}).fail(f).done(function(g){var h;if("1"!==g){f()}h=c('').hide();h.appendTo(d.container);h.load(function(){d.triedLogin=true;h.remove();d.run(e)})})},destroy:function(){b.Messenger.prototype.destroy.call(this);this.request.abort();if(this.iframe){this.iframe.remove()}delete this.request;delete this.iframe;delete this.targetWindow}});(function(){var d=0;b.PreviewFrame.uuid=function(){return"preview-"+d++}}());b.Previewer=b.Messenger.extend({refreshBuffer:250,initialize:function(h,f){var d=this,g=/^https?/,e;c.extend(this,f||{});this.refresh=(function(i){var j=i.refresh,l=function(){k=null;j.call(i)},k;return function(){if(typeof k!=="number"){if(i.loading){i.abort()}else{return l()}}clearTimeout(k);k=setTimeout(l,i.refreshBuffer)}})(this);this.container=b.ensure(h.container);this.allowedUrls=h.allowedUrls;this.signature=h.signature;h.url=window.location.href;b.Messenger.prototype.initialize.call(this,h);this.add("scheme",this.origin()).link(this.origin).setter(function(j){var i=j.match(g);return i?i[0]:""});this.add("previewUrl",h.previewUrl).setter(function(j){var i;if(/\/wp-admin(\/|$)/.test(j.replace(/[#?].*$/,""))){return null}c.each([j.replace(g,d.scheme()),j],function(l,k){c.each(d.allowedUrls,function(m,n){if(0===k.indexOf(n)){i=k;return false}});if(i){return false}});return i?i:null});this.previewUrl.bind(this.refresh);this.scroll=0;this.bind("scroll",function(i){this.scroll=i});this.bind("url",this.previewUrl)},query:function(){},abort:function(){if(this.loading){this.loading.destroy();delete this.loading}},refresh:function(){var d=this;this.abort();this.loading=new b.PreviewFrame({url:this.url(),previewUrl:this.previewUrl(),query:this.query()||{},container:this.container,signature:this.signature});this.loading.done(function(){this.bind("synced",function(){if(d.preview){d.preview.destroy()}d.preview=this;delete d.loading;d.targetWindow(this.targetWindow());d.channel(this.channel());d.send("active")});this.send("sync",{scroll:d.scroll,settings:b.get()})});this.loading.fail(function(f,e){if("redirect"===f&&e){d.previewUrl(e)}if("logged out"===f){if(d.preview){d.preview.destroy();delete d.preview}d.login().done(d.refresh)}if("cheatin"===f){d.cheatin()}})},login:function(){var g=this,d,f,e;if(this._login){return this._login}d=c.Deferred();this._login=d.promise();f=new b.Messenger({channel:"login",url:b.settings.url.login});e=c('').appendTo(this.container);f.targetWindow(e[0].contentWindow);f.bind("login",function(){e.remove();f.destroy();delete g._login;d.resolve()});return this._login},cheatin:function(){c(document.body).empty().addClass("cheatin").append(""+b.l10n.cheatin+"
")}});b.controlConstructor={color:b.ColorControl,upload:b.UploadControl,image:b.ImageControl};c(function(){b.settings=window._wpCustomizeSettings;b.l10n=window._wpCustomizeControlsL10n;if(!b.settings){return}if(!c.support.postMessage||(!c.support.cors&&b.settings.isCrossDomain)){return window.location=b.settings.url.fallback}var d=c(document.body),e=d.children(".wp-full-overlay"),g,h,f;c("#customize-controls").on("keydown",function(i){if(c(i.target).is("textarea")){return}if(13===i.which){i.preventDefault()}});h=new b.Previewer({container:"#customize-preview",form:"#customize-controls",previewUrl:b.settings.url.preview,allowedUrls:b.settings.url.allowed,signature:"WP_CUSTOMIZER_SIGNATURE"},{nonce:b.settings.nonce,query:function(){return{wp_customize:"on",theme:b.settings.theme.stylesheet,customized:JSON.stringify(b.get()),nonce:this.nonce.preview}},save:function(){var i=this,k=c.extend(this.query(),{action:"customize_save",nonce:this.nonce.save}),j=c.post(b.settings.url.ajax,k);b.trigger("save",j);d.addClass("saving");j.always(function(){d.removeClass("saving")});j.done(function(l){if("0"===l){i.preview.iframe.hide();i.login().done(function(){i.save();i.preview.iframe.show()});return}if("-1"===l){i.cheatin();return}b.trigger("saved")})}});h.bind("nonce",function(i){c.extend(this.nonce,i)});c.each(b.settings.settings,function(j,i){b.create(j,j,i.value,{transport:i.transport,previewer:h})});c.each(b.settings.controls,function(l,j){var i=b.controlConstructor[j.type]||b.Control,k;k=b.control.add(l,new i(l,{params:j,previewer:h}))});if(h.previewUrl()){h.refresh()}else{h.previewUrl(b.settings.url.home)}(function(){var k=new b.Values(),j=k.create("saved"),i=k.create("activated");k.bind("change",function(){var m=c("#save"),l=c(".back");if(!i()){m.val(b.l10n.activate).prop("disabled",false);l.text(b.l10n.cancel)}else{if(j()){m.val(b.l10n.saved).prop("disabled",true);l.text(b.l10n.close)}else{m.val(b.l10n.save).prop("disabled",false);l.text(b.l10n.cancel)}}});j(true);i(b.settings.theme.active);b.bind("change",function(){k("saved").set(false)});b.bind("saved",function(){k("saved").set(true);k("activated").set(true)});i.bind(function(l){if(l){b.trigger("activated")}});b.state=k}());c(".customize-section-title").click(function(j){var i=c(this).parents(".customize-section");if(i.hasClass("cannot-expand")){return}c(".customize-section").not(i).removeClass("open");i.toggleClass("open");j.preventDefault()});c("#save").click(function(i){h.save();i.preventDefault()});c(".collapse-sidebar").click(function(i){e.toggleClass("collapsed").toggleClass("expanded");i.preventDefault()});f=new b.Messenger({url:b.settings.url.parent,channel:"loader"});f.bind("back",function(){c(".back").on("click.back",function(i){i.preventDefault();f.send("close")})});b.bind("saved",function(){f.send("saved")});b.bind("activated",function(){if(f.targetWindow()){f.send("activated",b.settings.url.activated)}else{if(b.settings.url.activated){window.location=b.settings.url.activated}}});f.send("ready");c.each({background_image:{controls:["background_repeat","background_position_x","background_attachment"],callback:function(i){return !!i}},show_on_front:{controls:["page_on_front","page_for_posts"],callback:function(i){return"page"===i}},header_textcolor:{controls:["header_textcolor"],callback:function(i){return"blank"!==i}}},function(i,j){b(i,function(k){c.each(j.controls,function(l,m){b.control(m,function(o){var n=function(p){o.container.toggle(j.callback(p))};n(k.get());k.bind(n)})})})});b.control("display_header_text",function(j){var i="";j.elements[0].unsync(b("header_textcolor"));j.element=new b.Element(j.container.find("input"));j.element.set("blank"!==j.setting());j.element.bind(function(k){if(!k){i=b("header_textcolor").get()}j.setting.set(k?i:"blank")});j.setting.bind(function(k){j.element.set("blank"!==k)})});b.control("header_image",function(i){i.setting.bind(function(j){if(j===i.params.removed){i.settings.data.set(false)}});i.library.on("click","a",function(j){i.settings.data.set(c(this).data("customizeHeaderImageData"))});i.uploader.success=function(k){var j;b.ImageControl.prototype.success.call(i,k);j={attachment_id:k.id,url:k.url,thumbnail_url:k.url,height:k.meta.height,width:k.meta.width};k.element.data("customizeHeaderImageData",j);i.settings.data.set(j)}});b.trigger("ready")})})(wp,jQuery);
\ No newline at end of file
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-admin/js/link.dev.js ./wordpress-3.4.2/wp-admin/js/link.dev.js
*** ./wordpress-3.4.1/wp-admin/js/link.dev.js 2012-08-07 10:59:22.000000000 -0500
--- ./wordpress-3.4.2/wp-admin/js/link.dev.js 2012-09-03 22:17:11.000000000 -0500
***************
*** 23,29 ****
// Ajax Cat
newCat = $('#newcat').one( 'focus', function() { $(this).val( '' ).removeClass( 'form-input-tip' ) } );
! $('#category-add-submit').click( function() { newCat.focus(); } );
syncChecks = function() {
if ( noSyncChecks )
return;
--- 23,29 ----
// Ajax Cat
newCat = $('#newcat').one( 'focus', function() { $(this).val( '' ).removeClass( 'form-input-tip' ) } );
! $('#link-category-add-submit').click( function() { newCat.focus(); } );
syncChecks = function() {
if ( noSyncChecks )
return;
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-admin/js/link.js ./wordpress-3.4.2/wp-admin/js/link.js
*** ./wordpress-3.4.1/wp-admin/js/link.js 2012-08-07 10:59:22.000000000 -0500
--- ./wordpress-3.4.2/wp-admin/js/link.js 2012-09-04 20:55:55.000000000 -0500
***************
*** 1 ****
! jQuery(document).ready(function(c){var b,a=false,d,e;c("#link_name").focus();postboxes.add_postbox_toggles("link");c("#category-tabs a").click(function(){var f=c(this).attr("href");c(this).parent().addClass("tabs").siblings("li").removeClass("tabs");c(".tabs-panel").hide();c(f).show();if("#categories-all"==f){deleteUserSetting("cats")}else{setUserSetting("cats","pop")}return false});if(getUserSetting("cats")){c('#category-tabs a[href="#categories-pop"]').click()}b=c("#newcat").one("focus",function(){c(this).val("").removeClass("form-input-tip")});c("#category-add-submit").click(function(){b.focus()});d=function(){if(a){return}a=true;var f=c(this),h=f.is(":checked"),g=f.val().toString();c("#in-link-category-"+g+", #in-popular-category-"+g).prop("checked",h);a=false};e=function(g,f){c(f.what+" response_data",g).each(function(){var h=c(c(this).text());h.find("label").each(function(){var j=c(this),l=j.find("input").val(),m=j.find("input")[0].id,i=c.trim(j.text()),k;c("#"+m).change(d);k=c(' ').text(i)})})};c("#categorychecklist").wpList({alt:"",what:"link-category",response:"category-ajax-response",addAfter:e});c('a[href="#categories-all"]').click(function(){deleteUserSetting("cats")});c('a[href="#categories-pop"]').click(function(){setUserSetting("cats","pop")});if("pop"==getUserSetting("cats")){c('a[href="#categories-pop"]').click()}c("#category-add-toggle").click(function(){c(this).parents("div:first").toggleClass("wp-hidden-children");c('#category-tabs a[href="#categories-all"]').click();c("#newcategory").focus();return false});c(".categorychecklist :checkbox").change(d).filter(":checked").change()});
\ No newline at end of file
--- 1 ----
! jQuery(document).ready(function(c){var b,a=false,d,e;c("#link_name").focus();postboxes.add_postbox_toggles("link");c("#category-tabs a").click(function(){var f=c(this).attr("href");c(this).parent().addClass("tabs").siblings("li").removeClass("tabs");c(".tabs-panel").hide();c(f).show();if("#categories-all"==f){deleteUserSetting("cats")}else{setUserSetting("cats","pop")}return false});if(getUserSetting("cats")){c('#category-tabs a[href="#categories-pop"]').click()}b=c("#newcat").one("focus",function(){c(this).val("").removeClass("form-input-tip")});c("#link-category-add-submit").click(function(){b.focus()});d=function(){if(a){return}a=true;var f=c(this),h=f.is(":checked"),g=f.val().toString();c("#in-link-category-"+g+", #in-popular-category-"+g).prop("checked",h);a=false};e=function(g,f){c(f.what+" response_data",g).each(function(){var h=c(c(this).text());h.find("label").each(function(){var j=c(this),l=j.find("input").val(),m=j.find("input")[0].id,i=c.trim(j.text()),k;c("#"+m).change(d);k=c(' ').text(i)})})};c("#categorychecklist").wpList({alt:"",what:"link-category",response:"category-ajax-response",addAfter:e});c('a[href="#categories-all"]').click(function(){deleteUserSetting("cats")});c('a[href="#categories-pop"]').click(function(){setUserSetting("cats","pop")});if("pop"==getUserSetting("cats")){c('a[href="#categories-pop"]').click()}c("#category-add-toggle").click(function(){c(this).parents("div:first").toggleClass("wp-hidden-children");c('#category-tabs a[href="#categories-all"]').click();c("#newcategory").focus();return false});c(".categorychecklist :checkbox").change(d).filter(":checked").change()});
\ No newline at end of file
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-admin/js/post.dev.js ./wordpress-3.4.2/wp-admin/js/post.dev.js
*** ./wordpress-3.4.1/wp-admin/js/post.dev.js 2012-08-07 10:59:22.000000000 -0500
--- ./wordpress-3.4.2/wp-admin/js/post.dev.js 2012-09-04 15:28:52.000000000 -0500
***************
*** 342,348 ****
return false;
});
! $('#' + taxonomy + 'checklist li.popular-category :checkbox, #' + taxonomy + 'checklist-pop :checkbox').live( 'click', function(){
var t = $(this), c = t.is(':checked'), id = t.val();
if ( id && t.parents('#taxonomy-'+taxonomy).length )
$('#in-' + taxonomy + '-' + id + ', #in-popular-' + taxonomy + '-' + id).prop( 'checked', c );
--- 342,348 ----
return false;
});
! $('#' + taxonomy + 'checklist li.popular-category input[type="checkbox"], #' + taxonomy + 'checklist-pop input[type="checkbox"]').live( 'click', function(){
var t = $(this), c = t.is(':checked'), id = t.val();
if ( id && t.parents('#taxonomy-'+taxonomy).length )
$('#in-' + taxonomy + '-' + id + ', #in-popular-' + taxonomy + '-' + id).prop( 'checked', c );
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-admin/js/post.js ./wordpress-3.4.2/wp-admin/js/post.js
*** ./wordpress-3.4.1/wp-admin/js/post.js 2012-08-07 10:59:22.000000000 -0500
--- ./wordpress-3.4.2/wp-admin/js/post.js 2012-09-04 20:55:55.000000000 -0500
***************
*** 1 ****
! var tagBox,commentsBox,editPermalink,makeSlugeditClickable,WPSetThumbnailHTML,WPSetThumbnailID,WPRemoveThumbnail,wptitlehint;function array_unique_noempty(b){var c=[];jQuery.each(b,function(a,d){d=jQuery.trim(d);if(d&&jQuery.inArray(d,c)==-1){c.push(d)}});return c}(function(a){tagBox={clean:function(c){var b=postL10n.comma;if(","!==b){c=c.replace(new RegExp(b,"g"),",")}c=c.replace(/\s*,\s*/g,",").replace(/,+/g,",").replace(/[,\s]+$/,"").replace(/^[,\s]+/,"");if(","!==b){c=c.replace(/,/g,b)}return c},parseTags:function(f){var i=f.id,c=i.split("-check-num-")[1],e=a(f).closest(".tagsdiv"),h=e.find(".the-tags"),b=postL10n.comma,d=h.val().split(b),g=[];delete d[c];a.each(d,function(j,k){k=a.trim(k);if(k){g.push(k)}});h.val(this.clean(g.join(b)));this.quickClicks(e);return false},quickClicks:function(d){var g=a(".the-tags",d),e=a(".tagchecklist",d),f=a(d).attr("id"),b,c;if(!g.length){return}c=g.prop("disabled");b=g.val().split(postL10n.comma);e.empty();a.each(b,function(i,k){var j,h;k=a.trim(k);if(!k){return}j=a(" ").text(k);if(!c){h=a('X ');h.click(function(){tagBox.parseTags(this)});j.prepend(" ").prepend(h)}e.append(j)})},flushTags:function(g,c,h){c=c||false;var d=a(".the-tags",g),j=a("input.newtag",g),b=postL10n.comma,e,i;i=c?a(c).text():j.val();tagsval=d.val();e=tagsval?tagsval+b+i:i;e=this.clean(e);e=array_unique_noempty(e.split(b)).join(b);d.val(e);this.quickClicks(g);if(!c){j.val("")}if("undefined"==typeof(h)){j.focus()}return false},get:function(c){var b=c.substr(c.indexOf("-")+1);a.post(ajaxurl,{action:"get-tagcloud",tax:b},function(e,d){if(0==e||"success"!=d){e=wpAjax.broken}e=a(''+e+"
");a("a",e).click(function(){tagBox.flushTags(a(this).closest(".inside").children(".tagsdiv"),this);return false});a("#"+c).after(e)})},init:function(){var b=this,c=a("div.ajaxtag");a(".tagsdiv").each(function(){tagBox.quickClicks(this)});a("input.tagadd",c).click(function(){b.flushTags(a(this).closest(".tagsdiv"))});a("div.taghint",c).click(function(){a(this).css("visibility","hidden").parent().siblings(".newtag").focus()});a("input.newtag",c).blur(function(){if(this.value==""){a(this).parent().siblings(".taghint").css("visibility","")}}).focus(function(){a(this).parent().siblings(".taghint").css("visibility","hidden")}).keyup(function(d){if(13==d.which){tagBox.flushTags(a(this).closest(".tagsdiv"));return false}}).keypress(function(d){if(13==d.which){d.preventDefault();return false}}).each(function(){var d=a(this).closest("div.tagsdiv").attr("id");a(this).suggest(ajaxurl+"?action=ajax-tag-search&tax="+d,{delay:500,minchars:2,multiple:true,multipleSep:postL10n.comma+" "})});a("#post").submit(function(){a("div.tagsdiv").each(function(){tagBox.flushTags(this,false,1)})});a("a.tagcloud-link").click(function(){tagBox.get(a(this).attr("id"));a(this).unbind().click(function(){a(this).siblings(".the-tagcloud").toggle();return false});return false})}};commentsBox={st:0,get:function(d,c){var b=this.st,e;if(!c){c=20}this.st+=c;this.total=d;a("#commentsdiv img.waiting").show();e={action:"get-comments",mode:"single",_ajax_nonce:a("#add_comment_nonce").val(),p:a("#post_ID").val(),start:b,number:c};a.post(ajaxurl,e,function(f){f=wpAjax.parseAjaxResponse(f);a("#commentsdiv .widefat").show();a("#commentsdiv img.waiting").hide();if("object"==typeof f&&f.responses[0]){a("#the-comment-list").append(f.responses[0].data);theList=theExtraList=null;a("a[className*=':']").unbind();if(commentsBox.st>commentsBox.total){a("#show-comments").hide()}else{a("#show-comments").show().children("a").html(postL10n.showcomm)}return}else{if(1==f){a("#show-comments").html(postL10n.endcomm);return}}a("#the-comment-list").append(''+wpAjax.broken+" ")});return false}};WPSetThumbnailHTML=function(b){a(".inside","#postimagediv").html(b)};WPSetThumbnailID=function(c){var b=a('input[value="_thumbnail_id"]',"#list-table");if(b.size()>0){a("#meta\\["+b.attr("id").match(/[0-9]+/)+"\\]\\[value\\]").text(c)}};WPRemoveThumbnail=function(b){a.post(ajaxurl,{action:"set-post-thumbnail",post_id:a("#post_ID").val(),thumbnail_id:-1,_ajax_nonce:b,cookie:encodeURIComponent(document.cookie)},function(c){if(c=="0"){alert(setPostThumbnailL10n.error)}else{WPSetThumbnailHTML(c)}})}})(jQuery);jQuery(document).ready(function(f){var b,a,g="",e=0,h=f("#content");postboxes.add_postbox_toggles(pagenow);if(f("#tagsdiv-post_tag").length){tagBox.init()}else{f("#side-sortables, #normal-sortables, #advanced-sortables").children("div.postbox").each(function(){if(this.id.indexOf("tagsdiv-")===0){tagBox.init();return false}})}f(".categorydiv").each(function(){var n=f(this).attr("id"),j=false,m,o,l,i,k;l=n.split("-");l.shift();i=l.join("-");k=i+"_tab";if(i=="category"){k="cats"}f("a","#"+i+"-tabs").click(function(){var p=f(this).attr("href");f(this).parent().addClass("tabs").siblings("li").removeClass("tabs");f("#"+i+"-tabs").siblings(".tabs-panel").hide();f(p).show();if("#"+i+"-all"==p){deleteUserSetting(k)}else{setUserSetting(k,"pop")}return false});if(getUserSetting(k)){f('a[href="#'+i+'-pop"]',"#"+i+"-tabs").click()}f("#new"+i).one("focus",function(){f(this).val("").removeClass("form-input-tip")});f("#"+i+"-add-submit").click(function(){f("#new"+i).focus()});m=function(){if(j){return}j=true;var p=jQuery(this),r=p.is(":checked"),q=p.val().toString();f("#in-"+i+"-"+q+", #in-"+i+"-category-"+q).prop("checked",r);j=false};catAddBefore=function(p){if(!f("#new"+i).val()){return false}p.data+="&"+f(":checked","#"+i+"checklist").serialize();f("#"+i+"-add-submit").prop("disabled",true);return p};o=function(u,t){var q,p=f("#new"+i+"_parent");f("#"+i+"-add-submit").prop("disabled",false);if("undefined"!=t.parsed.responses[0]&&(q=t.parsed.responses[0].supplemental.newcat_parent)){p.before(q);p.remove()}};f("#"+i+"checklist").wpList({alt:"",response:i+"-ajax-response",addBefore:catAddBefore,addAfter:o});f("#"+i+"-add-toggle").click(function(){f("#"+i+"-adder").toggleClass("wp-hidden-children");f('a[href="#'+i+'-all"]',"#"+i+"-tabs").click();f("#new"+i).focus();return false});f("#"+i+"checklist li.popular-category :checkbox, #"+i+"checklist-pop :checkbox").live("click",function(){var p=f(this),r=p.is(":checked"),q=p.val();if(q&&p.parents("#taxonomy-"+i).length){f("#in-"+i+"-"+q+", #in-popular-"+i+"-"+q).prop("checked",r)}})});if(f("#postcustom").length){f("#the-list").wpList({addAfter:function(i,j){f("table#list-table").show()},addBefore:function(i){i.data+="&post_id="+f("#post_ID").val();return i}})}if(f("#submitdiv").length){b=f("#timestamp").html();a=f("#post-visibility-display").html();function d(){var i=f("#post-visibility-select");if(f("input:radio:checked",i).val()!="public"){f("#sticky").prop("checked",false);f("#sticky-span").hide()}else{f("#sticky-span").show()}if(f("input:radio:checked",i).val()!="password"){f("#password-span").hide()}else{f("#password-span").show()}}function c(){var p,q,j,s,r=f("#post_status"),k=f('option[value="publish"]',r),i=f("#aa").val(),n=f("#mm").val(),o=f("#jj").val(),m=f("#hh").val(),l=f("#mn").val();p=new Date(i,n-1,o,m,l);q=new Date(f("#hidden_aa").val(),f("#hidden_mm").val()-1,f("#hidden_jj").val(),f("#hidden_hh").val(),f("#hidden_mn").val());j=new Date(f("#cur_aa").val(),f("#cur_mm").val()-1,f("#cur_jj").val(),f("#cur_hh").val(),f("#cur_mn").val());if(p.getFullYear()!=i||(1+p.getMonth())!=n||p.getDate()!=o||p.getMinutes()!=l){f(".timestamp-wrap","#timestampdiv").addClass("form-invalid");return false}else{f(".timestamp-wrap","#timestampdiv").removeClass("form-invalid")}if(p>j&&f("#original_post_status").val()!="future"){s=postL10n.publishOnFuture;f("#publish").val(postL10n.schedule)}else{if(p<=j&&f("#original_post_status").val()!="publish"){s=postL10n.publishOn;f("#publish").val(postL10n.publish)}else{s=postL10n.publishOnPast;f("#publish").val(postL10n.update)}}if(q.toUTCString()==p.toUTCString()){f("#timestamp").html(b)}else{f("#timestamp").html(s+" "+f('option[value="'+f("#mm").val()+'"]',"#mm").text()+" "+o+", "+i+" @ "+m+":"+l+" ")}if(f("input:radio:checked","#post-visibility-select").val()=="private"){f("#publish").val(postL10n.update);if(k.length==0){r.append(''+postL10n.privatelyPublished+" ")}else{k.html(postL10n.privatelyPublished)}f('option[value="publish"]',r).prop("selected",true);f(".edit-post-status","#misc-publishing-actions").hide()}else{if(f("#original_post_status").val()=="future"||f("#original_post_status").val()=="draft"){if(k.length){k.remove();r.val(f("#hidden_post_status").val())}}else{k.html(postL10n.published)}if(r.is(":hidden")){f(".edit-post-status","#misc-publishing-actions").show()}}f("#post-status-display").html(f("option:selected",r).text());if(f("option:selected",r).val()=="private"||f("option:selected",r).val()=="publish"){f("#save-post").hide()}else{f("#save-post").show();if(f("option:selected",r).val()=="pending"){f("#save-post").show().val(postL10n.savePending)}else{f("#save-post").show().val(postL10n.saveDraft)}}return true}f(".edit-visibility","#visibility").click(function(){if(f("#post-visibility-select").is(":hidden")){d();f("#post-visibility-select").slideDown("fast");f(this).hide()}return false});f(".cancel-post-visibility","#post-visibility-select").click(function(){f("#post-visibility-select").slideUp("fast");f("#visibility-radio-"+f("#hidden-post-visibility").val()).prop("checked",true);f("#post_password").val(f("#hidden_post_password").val());f("#sticky").prop("checked",f("#hidden-post-sticky").prop("checked"));f("#post-visibility-display").html(a);f(".edit-visibility","#visibility").show();c();return false});f(".save-post-visibility","#post-visibility-select").click(function(){var i=f("#post-visibility-select");i.slideUp("fast");f(".edit-visibility","#visibility").show();c();if(f("input:radio:checked",i).val()!="public"){f("#sticky").prop("checked",false)}if(true==f("#sticky").prop("checked")){g="Sticky"}else{g=""}f("#post-visibility-display").html(postL10n[f("input:radio:checked",i).val()+g]);return false});f("input:radio","#post-visibility-select").change(function(){d()});f("#timestampdiv").siblings("a.edit-timestamp").click(function(){if(f("#timestampdiv").is(":hidden")){f("#timestampdiv").slideDown("fast");f(this).hide()}return false});f(".cancel-timestamp","#timestampdiv").click(function(){f("#timestampdiv").slideUp("fast");f("#mm").val(f("#hidden_mm").val());f("#jj").val(f("#hidden_jj").val());f("#aa").val(f("#hidden_aa").val());f("#hh").val(f("#hidden_hh").val());f("#mn").val(f("#hidden_mn").val());f("#timestampdiv").siblings("a.edit-timestamp").show();c();return false});f(".save-timestamp","#timestampdiv").click(function(){if(c()){f("#timestampdiv").slideUp("fast");f("#timestampdiv").siblings("a.edit-timestamp").show()}return false});f("#post-status-select").siblings("a.edit-post-status").click(function(){if(f("#post-status-select").is(":hidden")){f("#post-status-select").slideDown("fast");f(this).hide()}return false});f(".save-post-status","#post-status-select").click(function(){f("#post-status-select").slideUp("fast");f("#post-status-select").siblings("a.edit-post-status").show();c();return false});f(".cancel-post-status","#post-status-select").click(function(){f("#post-status-select").slideUp("fast");f("#post_status").val(f("#hidden_post_status").val());f("#post-status-select").siblings("a.edit-post-status").show();c();return false})}if(f("#edit-slug-box").length){editPermalink=function(j){var k,n=0,m=f("#editable-post-name"),o=m.html(),r=f("#post_name"),s=r.val(),p=f("#edit-slug-buttons"),q=p.html(),l=f("#editable-post-name-full").html();f("#view-post-btn").hide();p.html(''+postL10n.ok+' '+postL10n.cancel+" ");p.children(".save").click(function(){var i=m.children("input").val();if(i==f("#editable-post-name-full").text()){return f(".cancel","#edit-slug-buttons").click()}f.post(ajaxurl,{action:"sample-permalink",post_id:j,new_slug:i,new_title:f("#title").val(),samplepermalinknonce:f("#samplepermalinknonce").val()},function(t){f("#edit-slug-box").html(t);p.html(q);r.val(i);makeSlugeditClickable();f("#view-post-btn").show()});return false});f(".cancel","#edit-slug-buttons").click(function(){f("#view-post-btn").show();m.html(o);p.html(q);r.val(s);return false});for(k=0;kl.length/4)?"":l;m.html(' ').children("input").keypress(function(t){var i=t.keyCode||0;if(13==i){p.children(".save").click();return false}if(27==i){p.children(".cancel").click();return false}r.val(this.value)}).focus()};makeSlugeditClickable=function(){f("#editable-post-name").click(function(){f("#edit-slug-buttons").children(".edit-slug").click()})};makeSlugeditClickable()}if(typeof(wpWordCount)!="undefined"){f(document).triggerHandler("wpcountwords",[h.val()]);h.keyup(function(j){var i=j.keyCode||j.charCode;if(i==e){return true}if(13==i||8==e||46==e){f(document).triggerHandler("wpcountwords",[h.val()])}e=i;return true})}wptitlehint=function(k){k=k||"title";var i=f("#"+k),j=f("#"+k+"-prompt-text");if(i.val()==""){j.css("visibility","")}j.click(function(){f(this).css("visibility","hidden");i.focus()});i.blur(function(){if(this.value==""){j.css("visibility","")}}).focus(function(){j.css("visibility","hidden")}).keydown(function(l){j.css("visibility","hidden");f(this).unbind(l)})};wptitlehint()});
\ No newline at end of file
--- 1 ----
! var tagBox,commentsBox,editPermalink,makeSlugeditClickable,WPSetThumbnailHTML,WPSetThumbnailID,WPRemoveThumbnail,wptitlehint;function array_unique_noempty(b){var c=[];jQuery.each(b,function(a,d){d=jQuery.trim(d);if(d&&jQuery.inArray(d,c)==-1){c.push(d)}});return c}(function(a){tagBox={clean:function(c){var b=postL10n.comma;if(","!==b){c=c.replace(new RegExp(b,"g"),",")}c=c.replace(/\s*,\s*/g,",").replace(/,+/g,",").replace(/[,\s]+$/,"").replace(/^[,\s]+/,"");if(","!==b){c=c.replace(/,/g,b)}return c},parseTags:function(f){var i=f.id,c=i.split("-check-num-")[1],e=a(f).closest(".tagsdiv"),h=e.find(".the-tags"),b=postL10n.comma,d=h.val().split(b),g=[];delete d[c];a.each(d,function(j,k){k=a.trim(k);if(k){g.push(k)}});h.val(this.clean(g.join(b)));this.quickClicks(e);return false},quickClicks:function(d){var g=a(".the-tags",d),e=a(".tagchecklist",d),f=a(d).attr("id"),b,c;if(!g.length){return}c=g.prop("disabled");b=g.val().split(postL10n.comma);e.empty();a.each(b,function(i,k){var j,h;k=a.trim(k);if(!k){return}j=a(" ").text(k);if(!c){h=a('X ');h.click(function(){tagBox.parseTags(this)});j.prepend(" ").prepend(h)}e.append(j)})},flushTags:function(g,c,h){c=c||false;var d=a(".the-tags",g),j=a("input.newtag",g),b=postL10n.comma,e,i;i=c?a(c).text():j.val();tagsval=d.val();e=tagsval?tagsval+b+i:i;e=this.clean(e);e=array_unique_noempty(e.split(b)).join(b);d.val(e);this.quickClicks(g);if(!c){j.val("")}if("undefined"==typeof(h)){j.focus()}return false},get:function(c){var b=c.substr(c.indexOf("-")+1);a.post(ajaxurl,{action:"get-tagcloud",tax:b},function(e,d){if(0==e||"success"!=d){e=wpAjax.broken}e=a(''+e+"
");a("a",e).click(function(){tagBox.flushTags(a(this).closest(".inside").children(".tagsdiv"),this);return false});a("#"+c).after(e)})},init:function(){var b=this,c=a("div.ajaxtag");a(".tagsdiv").each(function(){tagBox.quickClicks(this)});a("input.tagadd",c).click(function(){b.flushTags(a(this).closest(".tagsdiv"))});a("div.taghint",c).click(function(){a(this).css("visibility","hidden").parent().siblings(".newtag").focus()});a("input.newtag",c).blur(function(){if(this.value==""){a(this).parent().siblings(".taghint").css("visibility","")}}).focus(function(){a(this).parent().siblings(".taghint").css("visibility","hidden")}).keyup(function(d){if(13==d.which){tagBox.flushTags(a(this).closest(".tagsdiv"));return false}}).keypress(function(d){if(13==d.which){d.preventDefault();return false}}).each(function(){var d=a(this).closest("div.tagsdiv").attr("id");a(this).suggest(ajaxurl+"?action=ajax-tag-search&tax="+d,{delay:500,minchars:2,multiple:true,multipleSep:postL10n.comma+" "})});a("#post").submit(function(){a("div.tagsdiv").each(function(){tagBox.flushTags(this,false,1)})});a("a.tagcloud-link").click(function(){tagBox.get(a(this).attr("id"));a(this).unbind().click(function(){a(this).siblings(".the-tagcloud").toggle();return false});return false})}};commentsBox={st:0,get:function(d,c){var b=this.st,e;if(!c){c=20}this.st+=c;this.total=d;a("#commentsdiv img.waiting").show();e={action:"get-comments",mode:"single",_ajax_nonce:a("#add_comment_nonce").val(),p:a("#post_ID").val(),start:b,number:c};a.post(ajaxurl,e,function(f){f=wpAjax.parseAjaxResponse(f);a("#commentsdiv .widefat").show();a("#commentsdiv img.waiting").hide();if("object"==typeof f&&f.responses[0]){a("#the-comment-list").append(f.responses[0].data);theList=theExtraList=null;a("a[className*=':']").unbind();if(commentsBox.st>commentsBox.total){a("#show-comments").hide()}else{a("#show-comments").show().children("a").html(postL10n.showcomm)}return}else{if(1==f){a("#show-comments").html(postL10n.endcomm);return}}a("#the-comment-list").append(''+wpAjax.broken+" ")});return false}};WPSetThumbnailHTML=function(b){a(".inside","#postimagediv").html(b)};WPSetThumbnailID=function(c){var b=a('input[value="_thumbnail_id"]',"#list-table");if(b.size()>0){a("#meta\\["+b.attr("id").match(/[0-9]+/)+"\\]\\[value\\]").text(c)}};WPRemoveThumbnail=function(b){a.post(ajaxurl,{action:"set-post-thumbnail",post_id:a("#post_ID").val(),thumbnail_id:-1,_ajax_nonce:b,cookie:encodeURIComponent(document.cookie)},function(c){if(c=="0"){alert(setPostThumbnailL10n.error)}else{WPSetThumbnailHTML(c)}})}})(jQuery);jQuery(document).ready(function(f){var b,a,g="",e=0,h=f("#content");postboxes.add_postbox_toggles(pagenow);if(f("#tagsdiv-post_tag").length){tagBox.init()}else{f("#side-sortables, #normal-sortables, #advanced-sortables").children("div.postbox").each(function(){if(this.id.indexOf("tagsdiv-")===0){tagBox.init();return false}})}f(".categorydiv").each(function(){var n=f(this).attr("id"),j=false,m,o,l,i,k;l=n.split("-");l.shift();i=l.join("-");k=i+"_tab";if(i=="category"){k="cats"}f("a","#"+i+"-tabs").click(function(){var p=f(this).attr("href");f(this).parent().addClass("tabs").siblings("li").removeClass("tabs");f("#"+i+"-tabs").siblings(".tabs-panel").hide();f(p).show();if("#"+i+"-all"==p){deleteUserSetting(k)}else{setUserSetting(k,"pop")}return false});if(getUserSetting(k)){f('a[href="#'+i+'-pop"]',"#"+i+"-tabs").click()}f("#new"+i).one("focus",function(){f(this).val("").removeClass("form-input-tip")});f("#"+i+"-add-submit").click(function(){f("#new"+i).focus()});m=function(){if(j){return}j=true;var p=jQuery(this),r=p.is(":checked"),q=p.val().toString();f("#in-"+i+"-"+q+", #in-"+i+"-category-"+q).prop("checked",r);j=false};catAddBefore=function(p){if(!f("#new"+i).val()){return false}p.data+="&"+f(":checked","#"+i+"checklist").serialize();f("#"+i+"-add-submit").prop("disabled",true);return p};o=function(u,t){var q,p=f("#new"+i+"_parent");f("#"+i+"-add-submit").prop("disabled",false);if("undefined"!=t.parsed.responses[0]&&(q=t.parsed.responses[0].supplemental.newcat_parent)){p.before(q);p.remove()}};f("#"+i+"checklist").wpList({alt:"",response:i+"-ajax-response",addBefore:catAddBefore,addAfter:o});f("#"+i+"-add-toggle").click(function(){f("#"+i+"-adder").toggleClass("wp-hidden-children");f('a[href="#'+i+'-all"]',"#"+i+"-tabs").click();f("#new"+i).focus();return false});f("#"+i+'checklist li.popular-category input[type="checkbox"], #'+i+'checklist-pop input[type="checkbox"]').live("click",function(){var p=f(this),r=p.is(":checked"),q=p.val();if(q&&p.parents("#taxonomy-"+i).length){f("#in-"+i+"-"+q+", #in-popular-"+i+"-"+q).prop("checked",r)}})});if(f("#postcustom").length){f("#the-list").wpList({addAfter:function(i,j){f("table#list-table").show()},addBefore:function(i){i.data+="&post_id="+f("#post_ID").val();return i}})}if(f("#submitdiv").length){b=f("#timestamp").html();a=f("#post-visibility-display").html();function d(){var i=f("#post-visibility-select");if(f("input:radio:checked",i).val()!="public"){f("#sticky").prop("checked",false);f("#sticky-span").hide()}else{f("#sticky-span").show()}if(f("input:radio:checked",i).val()!="password"){f("#password-span").hide()}else{f("#password-span").show()}}function c(){var p,q,j,s,r=f("#post_status"),k=f('option[value="publish"]',r),i=f("#aa").val(),n=f("#mm").val(),o=f("#jj").val(),m=f("#hh").val(),l=f("#mn").val();p=new Date(i,n-1,o,m,l);q=new Date(f("#hidden_aa").val(),f("#hidden_mm").val()-1,f("#hidden_jj").val(),f("#hidden_hh").val(),f("#hidden_mn").val());j=new Date(f("#cur_aa").val(),f("#cur_mm").val()-1,f("#cur_jj").val(),f("#cur_hh").val(),f("#cur_mn").val());if(p.getFullYear()!=i||(1+p.getMonth())!=n||p.getDate()!=o||p.getMinutes()!=l){f(".timestamp-wrap","#timestampdiv").addClass("form-invalid");return false}else{f(".timestamp-wrap","#timestampdiv").removeClass("form-invalid")}if(p>j&&f("#original_post_status").val()!="future"){s=postL10n.publishOnFuture;f("#publish").val(postL10n.schedule)}else{if(p<=j&&f("#original_post_status").val()!="publish"){s=postL10n.publishOn;f("#publish").val(postL10n.publish)}else{s=postL10n.publishOnPast;f("#publish").val(postL10n.update)}}if(q.toUTCString()==p.toUTCString()){f("#timestamp").html(b)}else{f("#timestamp").html(s+" "+f('option[value="'+f("#mm").val()+'"]',"#mm").text()+" "+o+", "+i+" @ "+m+":"+l+" ")}if(f("input:radio:checked","#post-visibility-select").val()=="private"){f("#publish").val(postL10n.update);if(k.length==0){r.append(''+postL10n.privatelyPublished+" ")}else{k.html(postL10n.privatelyPublished)}f('option[value="publish"]',r).prop("selected",true);f(".edit-post-status","#misc-publishing-actions").hide()}else{if(f("#original_post_status").val()=="future"||f("#original_post_status").val()=="draft"){if(k.length){k.remove();r.val(f("#hidden_post_status").val())}}else{k.html(postL10n.published)}if(r.is(":hidden")){f(".edit-post-status","#misc-publishing-actions").show()}}f("#post-status-display").html(f("option:selected",r).text());if(f("option:selected",r).val()=="private"||f("option:selected",r).val()=="publish"){f("#save-post").hide()}else{f("#save-post").show();if(f("option:selected",r).val()=="pending"){f("#save-post").show().val(postL10n.savePending)}else{f("#save-post").show().val(postL10n.saveDraft)}}return true}f(".edit-visibility","#visibility").click(function(){if(f("#post-visibility-select").is(":hidden")){d();f("#post-visibility-select").slideDown("fast");f(this).hide()}return false});f(".cancel-post-visibility","#post-visibility-select").click(function(){f("#post-visibility-select").slideUp("fast");f("#visibility-radio-"+f("#hidden-post-visibility").val()).prop("checked",true);f("#post_password").val(f("#hidden_post_password").val());f("#sticky").prop("checked",f("#hidden-post-sticky").prop("checked"));f("#post-visibility-display").html(a);f(".edit-visibility","#visibility").show();c();return false});f(".save-post-visibility","#post-visibility-select").click(function(){var i=f("#post-visibility-select");i.slideUp("fast");f(".edit-visibility","#visibility").show();c();if(f("input:radio:checked",i).val()!="public"){f("#sticky").prop("checked",false)}if(true==f("#sticky").prop("checked")){g="Sticky"}else{g=""}f("#post-visibility-display").html(postL10n[f("input:radio:checked",i).val()+g]);return false});f("input:radio","#post-visibility-select").change(function(){d()});f("#timestampdiv").siblings("a.edit-timestamp").click(function(){if(f("#timestampdiv").is(":hidden")){f("#timestampdiv").slideDown("fast");f(this).hide()}return false});f(".cancel-timestamp","#timestampdiv").click(function(){f("#timestampdiv").slideUp("fast");f("#mm").val(f("#hidden_mm").val());f("#jj").val(f("#hidden_jj").val());f("#aa").val(f("#hidden_aa").val());f("#hh").val(f("#hidden_hh").val());f("#mn").val(f("#hidden_mn").val());f("#timestampdiv").siblings("a.edit-timestamp").show();c();return false});f(".save-timestamp","#timestampdiv").click(function(){if(c()){f("#timestampdiv").slideUp("fast");f("#timestampdiv").siblings("a.edit-timestamp").show()}return false});f("#post-status-select").siblings("a.edit-post-status").click(function(){if(f("#post-status-select").is(":hidden")){f("#post-status-select").slideDown("fast");f(this).hide()}return false});f(".save-post-status","#post-status-select").click(function(){f("#post-status-select").slideUp("fast");f("#post-status-select").siblings("a.edit-post-status").show();c();return false});f(".cancel-post-status","#post-status-select").click(function(){f("#post-status-select").slideUp("fast");f("#post_status").val(f("#hidden_post_status").val());f("#post-status-select").siblings("a.edit-post-status").show();c();return false})}if(f("#edit-slug-box").length){editPermalink=function(j){var k,n=0,m=f("#editable-post-name"),o=m.html(),r=f("#post_name"),s=r.val(),p=f("#edit-slug-buttons"),q=p.html(),l=f("#editable-post-name-full").html();f("#view-post-btn").hide();p.html(''+postL10n.ok+' '+postL10n.cancel+" ");p.children(".save").click(function(){var i=m.children("input").val();if(i==f("#editable-post-name-full").text()){return f(".cancel","#edit-slug-buttons").click()}f.post(ajaxurl,{action:"sample-permalink",post_id:j,new_slug:i,new_title:f("#title").val(),samplepermalinknonce:f("#samplepermalinknonce").val()},function(t){f("#edit-slug-box").html(t);p.html(q);r.val(i);makeSlugeditClickable();f("#view-post-btn").show()});return false});f(".cancel","#edit-slug-buttons").click(function(){f("#view-post-btn").show();m.html(o);p.html(q);r.val(s);return false});for(k=0;kl.length/4)?"":l;m.html(' ').children("input").keypress(function(t){var i=t.keyCode||0;if(13==i){p.children(".save").click();return false}if(27==i){p.children(".cancel").click();return false}r.val(this.value)}).focus()};makeSlugeditClickable=function(){f("#editable-post-name").click(function(){f("#edit-slug-buttons").children(".edit-slug").click()})};makeSlugeditClickable()}if(typeof(wpWordCount)!="undefined"){f(document).triggerHandler("wpcountwords",[h.val()]);h.keyup(function(j){var i=j.keyCode||j.charCode;if(i==e){return true}if(13==i||8==e||46==e){f(document).triggerHandler("wpcountwords",[h.val()])}e=i;return true})}wptitlehint=function(k){k=k||"title";var i=f("#"+k),j=f("#"+k+"-prompt-text");if(i.val()==""){j.css("visibility","")}j.click(function(){f(this).css("visibility","hidden");i.focus()});i.blur(function(){if(this.value==""){j.css("visibility","")}}).focus(function(){j.css("visibility","hidden")}).keydown(function(l){j.css("visibility","hidden");f(this).unbind(l)})};wptitlehint()});
\ No newline at end of file
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-admin/plugins.php ./wordpress-3.4.2/wp-admin/plugins.php
*** ./wordpress-3.4.1/wp-admin/plugins.php 2012-08-07 10:59:22.000000000 -0500
--- ./wordpress-3.4.2/wp-admin/plugins.php 2012-09-04 15:53:05.000000000 -0500
***************
*** 51,56 ****
--- 51,61 ----
}
if ( ! is_network_admin() ) {
+ if ( is_network_only_plugin( $plugin ) ) {
+ wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
+ exit;
+ }
+
$recent = (array) get_option( 'recently_activated' );
unset( $recent[ $plugin ] );
update_option( 'recently_activated', $recent );
***************
*** 72,81 ****
$plugins = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array();
// Only activate plugins which are not already active.
! $check = is_network_admin() ? 'is_plugin_active_for_network' : 'is_plugin_active';
! foreach ( $plugins as $i => $plugin )
! if ( $check( $plugin ) )
! unset( $plugins[ $i ] );
if ( empty($plugins) ) {
wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
--- 77,93 ----
$plugins = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array();
// Only activate plugins which are not already active.
! if ( is_network_admin() ) {
! foreach ( $plugins as $i => $plugin ) {
! if ( is_plugin_active_for_network( $plugin ) )
! unset( $plugins[ $i ] );
! }
! } else {
! foreach ( $plugins as $i => $plugin ) {
! if ( is_plugin_active( $plugin ) || is_network_only_plugin( $plugin ) )
! unset( $plugins[ $i ] );
! }
! }
if ( empty($plugins) ) {
wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-admin/setup-config.php ./wordpress-3.4.2/wp-admin/setup-config.php
*** ./wordpress-3.4.1/wp-admin/setup-config.php 2012-08-07 10:59:22.000000000 -0500
--- ./wordpress-3.4.2/wp-admin/setup-config.php 2012-09-04 15:31:14.000000000 -0500
***************
*** 44,55 ****
require(ABSPATH . WPINC . '/load.php');
require(ABSPATH . WPINC . '/version.php');
- // Also loads functions.php, plugin.php, l10n.php, pomo/mo.php (all required by setup-config.php)
- wp_load_translations_early();
-
// Check for the required PHP version and for the MySQL extension or a database drop-in.
wp_check_php_mysql_versions();
// Turn register_globals off.
wp_unregister_GLOBALS();
--- 44,57 ----
require(ABSPATH . WPINC . '/load.php');
require(ABSPATH . WPINC . '/version.php');
// Check for the required PHP version and for the MySQL extension or a database drop-in.
wp_check_php_mysql_versions();
+ require_once(ABSPATH . WPINC . '/functions.php');
+
+ // Also loads plugin.php, l10n.php, pomo/mo.php (all required by setup-config.php)
+ wp_load_translations_early();
+
// Turn register_globals off.
wp_unregister_GLOBALS();
***************
*** 217,225 ****
}
$key = 0;
! foreach ( $config_file as &$line ) {
if ( '$table_prefix =' == substr( $line, 0, 16 ) ) {
! $line = '$table_prefix = \'' . addcslashes( $prefix, "\\'" ) . "';\r\n";
continue;
}
--- 219,228 ----
}
$key = 0;
! // Not a PHP5-style by-reference foreach, as this file must be parseable by PHP4.
! foreach ( $config_file as $line_num => $line ) {
if ( '$table_prefix =' == substr( $line, 0, 16 ) ) {
! $config_file[ $line_num ] = '$table_prefix = \'' . addcslashes( $prefix, "\\'" ) . "';\r\n";
continue;
}
***************
*** 234,240 ****
case 'DB_USER' :
case 'DB_PASSWORD' :
case 'DB_HOST' :
! $line = "define('" . $constant . "'," . $padding . "'" . addcslashes( constant( $constant ), "\\'" ) . "');\r\n";
break;
case 'AUTH_KEY' :
case 'SECURE_AUTH_KEY' :
--- 237,243 ----
case 'DB_USER' :
case 'DB_PASSWORD' :
case 'DB_HOST' :
! $config_file[ $line_num ] = "define('" . $constant . "'," . $padding . "'" . addcslashes( constant( $constant ), "\\'" ) . "');\r\n";
break;
case 'AUTH_KEY' :
case 'SECURE_AUTH_KEY' :
***************
*** 244,250 ****
case 'SECURE_AUTH_SALT' :
case 'LOGGED_IN_SALT' :
case 'NONCE_SALT' :
! $line = "define('" . $constant . "'," . $padding . "'" . $secret_keys[$key++] . "');\r\n";
break;
}
}
--- 247,253 ----
case 'SECURE_AUTH_SALT' :
case 'LOGGED_IN_SALT' :
case 'NONCE_SALT' :
! $config_file[ $line_num ] = "define('" . $constant . "'," . $padding . "'" . $secret_keys[$key++] . "');\r\n";
break;
}
}
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/capabilities.php ./wordpress-3.4.2/wp-includes/capabilities.php
*** ./wordpress-3.4.1/wp-includes/capabilities.php 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/capabilities.php 2012-09-06 13:04:58.000000000 -0500
***************
*** 1131,1137 ****
if ( defined( 'DISALLOW_UNFILTERED_HTML' ) && DISALLOW_UNFILTERED_HTML )
$caps[] = 'do_not_allow';
elseif ( is_multisite() && ! is_super_admin( $user_id ) )
! $caps[] = $cap;
else
$caps[] = $cap;
break;
--- 1131,1137 ----
if ( defined( 'DISALLOW_UNFILTERED_HTML' ) && DISALLOW_UNFILTERED_HTML )
$caps[] = 'do_not_allow';
elseif ( is_multisite() && ! is_super_admin( $user_id ) )
! $caps[] = 'do_not_allow';
else
$caps[] = $cap;
break;
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/class-oembed.php ./wordpress-3.4.2/wp-includes/class-oembed.php
*** ./wordpress-3.4.1/wp-includes/class-oembed.php 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/class-oembed.php 2012-09-03 18:25:58.000000000 -0500
***************
*** 213,220 ****
$errors = libxml_use_internal_errors( 'true' );
$data = simplexml_load_string( $response_body );
libxml_use_internal_errors( $errors );
! if ( is_object( $data ) )
! return $data;
}
return false;
}
--- 213,226 ----
$errors = libxml_use_internal_errors( 'true' );
$data = simplexml_load_string( $response_body );
libxml_use_internal_errors( $errors );
! if ( ! is_object( $data ) )
! return false;
!
! $return = new stdClass;
! foreach ( $data as $key => $value )
! $return->$key = (string) $value;
!
! return $return;
}
return false;
}
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/class-wp-atom-server.php ./wordpress-3.4.2/wp-includes/class-wp-atom-server.php
*** ./wordpress-3.4.1/wp-includes/class-wp-atom-server.php 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/class-wp-atom-server.php 2012-09-04 15:58:32.000000000 -0500
***************
*** 167,175 ****
array('GET' => 'get_attachment',
'POST' => 'create_attachment'),
'@/attachment/file/(\d+)$@' =>
! array('GET' => 'get_file',
! 'PUT' => 'put_file',
! 'DELETE' => 'delete_file'),
'@/attachment/(\d+)$@' =>
array('GET' => 'get_attachment',
'PUT' => 'put_attachment',
--- 167,173 ----
array('GET' => 'get_attachment',
'POST' => 'create_attachment'),
'@/attachment/file/(\d+)$@' =>
! array('GET' => 'get_file'),
'@/attachment/(\d+)$@' =>
array('GET' => 'get_attachment',
'PUT' => 'put_attachment',
***************
*** 315,320 ****
--- 313,324 ----
$entry = array_pop($parser->feed->entries);
+ $publish = ! ( isset( $entry->draft ) && 'yes' == trim( $entry->draft ) );
+ $cap = ($publish) ? 'publish_posts' : 'edit_posts';
+
+ if ( !current_user_can($cap) )
+ $this->auth_required(__('Sorry, you do not have the right to edit/publish new posts.'));
+
$catnames = array();
if ( !empty( $entry->categories ) ) {
foreach ( $entry->categories as $cat ) {
***************
*** 331,343 ****
array_push($post_category, $cat->term_id);
}
- $publish = ! ( isset( $entry->draft ) && 'yes' == trim( $entry->draft ) );
-
- $cap = ($publish) ? 'publish_posts' : 'edit_posts';
-
- if ( !current_user_can($cap) )
- $this->auth_required(__('Sorry, you do not have the right to edit/publish new posts.'));
-
$blog_ID = get_current_blog_id();
$post_status = ($publish) ? 'publish' : 'draft';
$post_author = (int) $user_ID;
--- 335,340 ----
***************
*** 398,404 ****
function get_post($postID) {
global $entry;
! if ( !current_user_can( 'edit_post', $postID ) )
$this->auth_required( __( 'Sorry, you do not have the right to access this post.' ) );
$this->set_current_entry($postID);
--- 395,401 ----
function get_post($postID) {
global $entry;
! if ( ! get_post( $postID ) || ! current_user_can( 'edit_post', $postID ) )
$this->auth_required( __( 'Sorry, you do not have the right to access this post.' ) );
$this->set_current_entry($postID);
***************
*** 429,438 ****
global $entry;
$this->set_current_entry($postID);
! if ( !current_user_can('edit_post', $entry['ID']) )
$this->auth_required(__('Sorry, you do not have the right to edit this post.'));
$publish = ! ( isset($parsed->draft) && 'yes' == trim($parsed->draft) );
$post_status = ($publish) ? 'publish' : 'draft';
extract($entry);
--- 426,439 ----
global $entry;
$this->set_current_entry($postID);
! if ( !current_user_can('edit_post', $postID) )
$this->auth_required(__('Sorry, you do not have the right to edit this post.'));
$publish = ! ( isset($parsed->draft) && 'yes' == trim($parsed->draft) );
+
+ if ( $publish && ! current_user_can( 'publish_posts' ) )
+ $this->auth_required( __( 'Sorry, you do not have the right to publish this post.' ) );
+
$post_status = ($publish) ? 'publish' : 'draft';
extract($entry);
***************
*** 473,479 ****
global $entry;
$this->set_current_entry($postID);
! if ( !current_user_can('edit_post', $postID) )
$this->auth_required(__('Sorry, you do not have the right to delete this post.'));
if ( $entry['post_type'] == 'attachment' ) {
--- 474,480 ----
global $entry;
$this->set_current_entry($postID);
! if ( !current_user_can('delete_post', $postID) )
$this->auth_required(__('Sorry, you do not have the right to delete this post.'));
if ( $entry['post_type'] == 'attachment' ) {
***************
*** 504,509 ****
--- 505,513 ----
if ( !isset($postID) ) {
$this->get_attachments();
} else {
+ if ( ! current_user_can( 'edit_post', $postID ) )
+ $this->auth_required( __( 'Sorry, you do not have the right to edit this post.' ) );
+
$this->set_current_entry($postID);
$output = $this->get_entry($postID, 'attachment');
$this->output($output);
***************
*** 589,595 ****
global $entry;
$this->set_current_entry($postID);
! if ( !current_user_can('edit_post', $entry['ID']) )
$this->auth_required(__('Sorry, you do not have the right to edit this post.'));
extract($entry);
--- 593,599 ----
global $entry;
$this->set_current_entry($postID);
! if ( !current_user_can('edit_post', $entry['ID']) || 'attachment' != $entry['post_type'] )
$this->auth_required(__('Sorry, you do not have the right to edit this post.'));
extract($entry);
***************
*** 624,630 ****
global $entry;
$this->set_current_entry($postID);
! if ( !current_user_can('edit_post', $postID) )
$this->auth_required(__('Sorry, you do not have the right to delete this post.'));
$location = get_post_meta($entry['ID'], '_wp_attached_file', true);
--- 628,634 ----
global $entry;
$this->set_current_entry($postID);
! if ( !current_user_can('delete_post', $postID) )
$this->auth_required(__('Sorry, you do not have the right to delete this post.'));
$location = get_post_meta($entry['ID'], '_wp_attached_file', true);
***************
*** 633,643 ****
if ( !isset($location) || 'attachment' != $entry['post_type'] || empty($filetype['ext']) )
$this->internal_error(__('Error occurred while accessing post metadata for file location.'));
- // delete file
- @unlink($location);
-
// delete attachment
! $result = wp_delete_post($postID);
if ( !$result )
$this->internal_error(__('For some strange yet very annoying reason, this post could not be deleted.'));
--- 637,644 ----
if ( !isset($location) || 'attachment' != $entry['post_type'] || empty($filetype['ext']) )
$this->internal_error(__('Error occurred while accessing post metadata for file location.'));
// delete attachment
! $result = wp_delete_attachment($postID);
if ( !$result )
$this->internal_error(__('For some strange yet very annoying reason, this post could not be deleted.'));
***************
*** 970,976 ****
$count = get_option('posts_per_rss');
! wp('posts_per_page=' . $count . '&offset=' . ($count * ($page-1)) . '&orderby=modified&post_status=any');
$post = $GLOBALS['post'];
$posts = $GLOBALS['posts'];
--- 971,977 ----
$count = get_option('posts_per_rss');
! wp('posts_per_page=' . $count . '&offset=' . ($count * ($page-1)) . '&orderby=modified&perm=readable');
$post = $GLOBALS['post'];
$posts = $GLOBALS['posts'];
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/class-wp-customize-control.php ./wordpress-3.4.2/wp-includes/class-wp-customize-control.php
*** ./wordpress-3.4.1/wp-includes/class-wp-customize-control.php 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/class-wp-customize-control.php 2012-09-03 23:54:01.000000000 -0500
***************
*** 321,326 ****
--- 321,341 ----
$this->add_tab( 'upload-new', __('Upload New'), array( $this, 'tab_upload_new' ) );
$this->add_tab( 'uploaded', __('Uploaded'), array( $this, 'tab_uploaded' ) );
+
+ // Early priority to occur before $this->manager->prepare_controls();
+ add_action( 'customize_controls_init', array( $this, 'prepare_control' ), 5 );
+ }
+
+ /**
+ * Prepares the control.
+ *
+ * If no tabs exist, removes the control from the manager.
+ *
+ * @since 3.4.2
+ */
+ public function prepare_control() {
+ if ( ! $this->tabs )
+ $this->manager->remove_control( $this->id );
}
public function to_json() {
***************
*** 455,460 ****
--- 470,489 ----
}
class WP_Customize_Header_Image_Control extends WP_Customize_Image_Control {
+ /**
+ * The processed default headers.
+ * @since 3.4.2
+ * @var array
+ */
+ protected $default_headers;
+
+ /**
+ * The uploaded headers.
+ * @since 3.4.2
+ * @var array
+ */
+ protected $uploaded_headers;
+
public function __construct( $manager ) {
parent::__construct( $manager, 'header_image', array(
'label' => __( 'Header Image' ),
***************
*** 474,480 ****
)
) );
! $this->add_tab( 'default', __('Default'), array( $this, 'tab_default_headers' ) );
}
public function print_header_image( $choice, $header ) {
--- 503,536 ----
)
) );
! // Remove the upload tab.
! $this->remove_tab( 'upload-new' );
! }
!
! /**
! * Prepares the control.
! *
! * If no tabs exist, removes the control from the manager.
! *
! * @since 3.4.2
! */
! public function prepare_control() {
! global $custom_image_header;
! if ( empty( $custom_image_header ) )
! return parent::prepare_control();
!
! // Process default headers and uploaded headers.
! $custom_image_header->process_default_headers();
! $this->default_headers = $custom_image_header->default_headers;
! $this->uploaded_headers = get_uploaded_header_images();
!
! if ( $this->default_headers )
! $this->add_tab( 'default', __('Default'), array( $this, 'tab_default_headers' ) );
!
! if ( ! $this->uploaded_headers )
! $this->remove_tab( 'uploaded' );
!
! return parent::prepare_control();
}
public function print_header_image( $choice, $header ) {
***************
*** 498,516 ****
}
public function tab_uploaded() {
- $headers = get_uploaded_header_images();
-
?>
$header )
$this->print_header_image( $choice, $header );
}
public function tab_default_headers() {
! global $custom_image_header;
! $custom_image_header->process_default_headers();
!
! foreach ( $custom_image_header->default_headers as $choice => $header )
$this->print_header_image( $choice, $header );
}
}
\ No newline at end of file
--- 554,567 ----
}
public function tab_uploaded() {
?>
uploaded_headers as $choice => $header )
$this->print_header_image( $choice, $header );
}
public function tab_default_headers() {
! foreach ( $this->default_headers as $choice => $header )
$this->print_header_image( $choice, $header );
}
}
\ No newline at end of file
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/class-wp-editor.php ./wordpress-3.4.2/wp-includes/class-wp-editor.php
*** ./wordpress-3.4.1/wp-includes/class-wp-editor.php 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/class-wp-editor.php 2012-07-23 17:38:52.000000000 -0500
***************
*** 783,789 ****
--- 783,789 ----
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/class-wp-theme.php ./wordpress-3.4.2/wp-includes/class-wp-theme.php
*** ./wordpress-3.4.1/wp-includes/class-wp-theme.php 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/class-wp-theme.php 2012-09-03 21:16:12.000000000 -0500
***************
*** 794,800 ****
* @return string URL to the stylesheet directory.
*/
public function get_stylesheet_directory_uri() {
! return $this->get_theme_root_uri() . '/' . $this->stylesheet;
}
/**
--- 794,800 ----
* @return string URL to the stylesheet directory.
*/
public function get_stylesheet_directory_uri() {
! return $this->get_theme_root_uri() . '/' . str_replace( '%2F', '/', rawurlencode( $this->stylesheet ) );
}
/**
***************
*** 814,820 ****
else
$theme_root_uri = $this->get_theme_root_uri();
! return $theme_root . '/' . $this->template;
}
/**
--- 814,820 ----
else
$theme_root_uri = $this->get_theme_root_uri();
! return $theme_root_uri . '/' . str_replace( '%2F', '/', rawurlencode( $this->template ) );
}
/**
***************
*** 1071,1077 ****
* @return array Array of stylesheet names.
*/
public static function get_allowed( $blog_id = null ) {
! return self::get_allowed_on_network() + self::get_allowed_on_site( $blog_id );
}
/**
--- 1071,1078 ----
* @return array Array of stylesheet names.
*/
public static function get_allowed( $blog_id = null ) {
! $network = (array) apply_filters( 'allowed_themes', self::get_allowed_on_network() );
! return $network + self::get_allowed_on_site( $blog_id );
}
/**
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/class-wp-xmlrpc-server.php ./wordpress-3.4.2/wp-includes/class-wp-xmlrpc-server.php
*** ./wordpress-3.4.1/wp-includes/class-wp-xmlrpc-server.php 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/class-wp-xmlrpc-server.php 2012-09-03 17:12:14.000000000 -0500
***************
*** 622,628 ****
--- 622,632 ----
'post_password' => $post['post_password'],
'post_excerpt' => $post['post_excerpt'],
'post_content' => $post['post_content'],
+ 'post_parent' => strval( $post['post_parent'] ),
+ 'post_mime_type' => $post['post_mime_type'],
'link' => post_permalink( $post['ID'] ),
+ 'guid' => $post['guid'],
+ 'menu_order' => intval( $post['menu_order'] ),
'comment_status' => $post['comment_status'],
'ping_status' => $post['ping_status'],
'sticky' => ( $post['post_type'] === 'post' && is_sticky( $post['ID'] ) ),
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/css/editor.css ./wordpress-3.4.2/wp-includes/css/editor.css
*** ./wordpress-3.4.1/wp-includes/css/editor.css 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/css/editor.css 2012-09-04 20:55:55.000000000 -0500
***************
*** 1 ****
! .wp_themeSkin table,.wp_themeSkin tbody,.wp_themeSkin a,.wp_themeSkin img,.wp_themeSkin tr,.wp_themeSkin div,.wp_themeSkin td,.wp_themeSkin iframe,.wp_themeSkin span,.wp_themeSkin *,.wp_themeSkin .mceText{border:0;margin:0;padding:0;white-space:nowrap;text-decoration:none;font-weight:normal;cursor:default;vertical-align:baseline;width:auto;border-collapse:separate}.wp_themeSkin a:hover,.wp_themeSkin a:link,.wp_themeSkin a:visited,.wp_themeSkin a:active{text-decoration:none;font-weight:normal;cursor:default}.wp_themeSkin table td{vertical-align:middle}.wp_themeSkin *,.wp_themeSkin a:hover,.wp_themeSkin a:link,.wp_themeSkin a:visited,.wp_themeSkin a:active{color:#000}.wp_themeSkin iframe{display:block}.wp_themeSkin #mce_fullscreen_ifr{background-color:#fff}.wp_themeSkin .mceToolbar{padding:1px}.wp_themeSkin .mceExternalToolbar{position:absolute;border-bottom:0;display:none}.wp_themeSkin .mceExternalToolbar td.mceToolbar{padding-right:13px}.wp_themeSkin .mceExternalClose{position:absolute;top:3px;right:3px;width:7px;height:7px;background:url("../js/tinymce/themes/advanced/img/icons.gif") -820px 0}.wp_themeSkin table.mceToolbar,.wp_themeSkin tr.mceFirst .mceToolbar tr td,.wp_themeSkin tr.mceLast .mceToolbar tr td{border:0;margin:0;padding:0}.wp_themeSkin table.mceLayout{border:0}.wp_themeSkin .mceStatusbar{display:block;font-family:Arial,"Bitstream Vera Sans",Helvetica,Verdana,sans-serif;font-size:12px;line-height:16px;padding:0 0 0 8px;overflow:visible;height:20px;border-top:1px solid #dfdfdf;color:#000;background-color:#f5f5f5}.rtl .wp_themeSkin .mceStatusbar{padding:0 8px 0 0}.wp_themeSkin .mceStatusbar *{color:#555}.wp_themeSkin .mceStatusbar div{float:left;padding:2px}.rtl .wp_themeSkin .mceStatusbar div{float:right}.wp_themeSkin .mceStatusbar a.mceResize{display:block;float:right;background:url("../js/tinymce/themes/advanced/img/icons.gif") -800px 0;width:20px;height:20px;cursor:se-resize}.rtl .wp_themeSkin .mceStatusbar a.mceResize{float:left}.wp_themeSkin .mceStatusbar a:hover{text-decoration:underline}.wp_themeSkin table.mceToolbar{margin:0 6px 2px}.wp_themeSkin #content_toolbar1{margin-top:2px}.wp_themeSkin .mceToolbar .mceToolbarEndListBox span{display:none}.wp_themeSkin span.mceIcon,.wp_themeSkin img.mceIcon{display:block;width:20px;height:20px}.wp_themeSkin .mceIcon{background:url("../js/tinymce/themes/advanced/img/icons.gif") no-repeat 20px 20px}.wp_themeSkin .mceButton{display:block;width:20px;height:20px;cursor:default;padding:1px 2px;margin:1px;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff}.wp_themeSkin a.mceButtonEnabled:hover{background-image:inherit 0 -10px}.wp_themeSkin .mceOldBoxModel a.mceButton span,.wp_themeSkin .mceOldBoxModel a.mceButton img{margin:0 0 0 1px}.wp_themeSkin a.mceButton:active,.wp_themeSkin a.mceButtonActive,.wp_themeSkin a.mceButtonActive:hover,.wp_themeSkin a.mceButtonSelected{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff}.wp_themeSkin .mceButtonDisabled .mceIcon{opacity:.5;filter:alpha(opacity=50)}.wp_themeSkin .mceSeparator{height:24px;width:1px;display:block;background:transparent;overflow:hidden;margin:0 2px}.wp_themeSkin .mceListBox,.wp_themeSkin .mceListBox a{display:block}.wp_themeSkin .mceListBox .mceText{padding:1px 2px 1px 5px;text-align:left;text-decoration:none;width:70px;-webkit-border-bottom-left-radius:2px;-webkit-border-top-left-radius:2px;border-bottom-left-radius:2px;border-top-left-radius:2px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;font-family:Arial,"Bitstream Vera Sans",Helvetica,Verdana,sans-serif;font-size:12px;height:20px;line-height:20px;overflow:hidden}.wp_themeSkin .mceListBox{margin:1px;direction:ltr}.wp_themeSkin .mceListBox .mceOpen{width:14px;height:20px;border-collapse:separate;padding:1px;-webkit-border-bottom-left-radius:0;-webkit-border-top-left-radius:0;border-bottom-left-radius:0;border-top-left-radius:0;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff}.wp_themeSkin .mceListBox .mceOpen span{display:block;width:14px;height:20px;background-image:url("../images/down_arrow.gif");background-position:2px 1px;background-repeat:no-repeat}.wp_themeSkin table.mceListBoxEnabled:hover .mceText,.wp_themeSkin .mceListBoxHover .mceText,.wp_themeSkin .mceListBoxSelected .mceText,.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,.wp_themeSkin .mceListBoxHover .mceOpen,.wp_themeSkin .mceListBoxSelected .mceOpen{background-image:none}.wp_themeSkin .mceListBoxDisabled .mceText{color:gray}.wp_themeSkin .mceListBoxMenu{overflow:auto;overflow-x:hidden}.wp_themeSkin .mceOldBoxModel .mceListBox .mceText{height:22px}.wp_themeSkin select.mceListBox{font-family:Arial,"Bitstream Vera Sans",Helvetica,Verdana,sans-serif;font-size:12px;border-color:#b2b2b2;background-color:#fff}.wp_themeSkin .mceSplitButton a,.wp_themeSkin .mceSplitButton span{display:block;height:20px}.wp_themeSkin .mceSplitButton{display:block;margin:1px;direction:ltr}.wp_themeSkin table.mceSplitButton td{padding:2px;-webkit-border-radius:2px;border-radius:2px}.wp_themeSkin table.mceSplitButton td a{-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff}.wp_themeSkin table.mceSplitButton:hover td{background-image:inherit 0 -10px}.wp_themeSkin .mceSplitButton a.mceAction{height:20px;width:20px;padding:1px 2px}.wp_themeSkin .mceSplitButton span.mceAction{background-image:url("../js/tinymce/themes/advanced/img/icons.gif");background-repeat:no-repeat;background-color:transparent;width:20px}.wp_themeSkin .mceSplitButton a.mceOpen{width:10px;height:20px;background-image:url("../images/down_arrow.gif");background-position:1px 2px;background-repeat:no-repeat;padding:1px;border-left:0 none!important}.wp_themeSkin .mceSplitButton span.mceOpen{display:none}.wp_themeSkin .mceSplitButtonDisabled .mceAction{opacity:.3;filter:alpha(opacity=30)}.wp_themeSkin .mceListBox a.mceText,.wp_themeSkin .mceSplitButton a.mceAction{-webkit-border-bottom-left-radius:2px;-webkit-border-top-left-radius:2px;border-bottom-left-radius:2px;border-top-left-radius:2px}.wp_themeSkin .mceSplitButton a.mceOpen,.wp_themeSkin .mceListBox a.mceOpen{-webkit-border-bottom-right-radius:2px;-webkit-border-top-right-radius:2px;border-bottom-right-radius:2px;border-top-right-radius:2px}.wp_themeSkin span.mce_undo,.wp_themeSkin span.mce_redo,.wp_themeSkin span.mce_bullist,.wp_themeSkin span.mce_numlist,.wp_themeSkin span.mce_blockquote,.wp_themeSkin span.mce_charmap,.wp_themeSkin span.mce_bold,.wp_themeSkin span.mce_italic,.wp_themeSkin span.mce_underline,.wp_themeSkin span.mce_justifyleft,.wp_themeSkin span.mce_justifyright,.wp_themeSkin span.mce_justifycenter,.wp_themeSkin span.mce_justifyfull,.wp_themeSkin span.mce_indent,.wp_themeSkin span.mce_outdent,.wp_themeSkin span.mce_link,.wp_themeSkin span.mce_unlink,.wp_themeSkin span.mce_help,.wp_themeSkin span.mce_removeformat,.wp_themeSkin span.mce_fullscreen,.wp_themeSkin span.mce_wp_fullscreen,.wp_themeSkin span.mce_media,.wp_themeSkin span.mce_pastetext,.wp_themeSkin span.mce_pasteword,.wp_themeSkin span.mce_wp_help,.wp_themeSkin span.mce_wp_adv,.wp_themeSkin span.mce_wp_more,.wp_themeSkin span.mce_strikethrough,.wp_themeSkin span.mce_spellchecker,.wp_themeSkin span.mce_forecolor,.wp_themeSkin .mce_forecolorpicker,.wp_themeSkin .mceSplitButton .mce_spellchecker span.mce_spellchecker,.wp_themeSkin .mceSplitButton .mce_forecolor span.mce_forecolor,.wp_themeSkin .mceSplitButton span.mce_numlist,.wp_themeSkin .mceSplitButton span.mce_bullist{background-image:url(../images/wpicons.png)}.wp_themeSkin div.mceColorSplitMenu table{background-color:#ebebeb;border-color:#b2b2b2}.wp_themeSkin .mceColorSplitMenu td{padding:2px}.wp_themeSkin .mceColorSplitMenu a{display:block;width:9px;height:9px;overflow:hidden;border-color:#b2b2b2}.wp_themeSkin .mceColorSplitMenu td.mceMoreColors{padding:1px 3px 1px 1px}.wp_themeSkin .mceColorSplitMenu a.mceMoreColors{width:100%;height:auto;text-align:center;font-family:Tahoma,Verdana,Arial,Helvetica;font-size:11px;line-height:20px;border-color:#fff}.wp_themeSkin .mceColorPreview{margin:-5px 0 0 2px;width:16px;height:4px;overflow:hidden}.wp_themeSkin .mceMenu{position:absolute;left:0;top:0;z-index:1000;border-color:#ddd}.wp_themeSkin .mceNoIcons span.mceIcon{width:0}.wp_themeSkin .mceNoIcons a .mceText{padding-left:10px}.wp_themeSkin .mceMenu table{background-color:#ebeaeb}.wp_themeSkin .mceMenu a,.wp_themeSkin .mceMenu span,.wp_themeSkin .mceMenu{display:block}.wp_themeSkin .mceMenu td{height:20px;overflow:hidden}.wp_themeSkin .mceMenu a{position:relative;padding:3px 0 4px 0;text-decoration:none!important}.wp_themeSkin .mceMenu .mceText{position:relative;display:block;font-family:Tahoma,Verdana,Arial,Helvetica;cursor:default;margin:0;padding:0 25px;color:#000}.wp_themeSkin .mceMenu span.mceText,.wp_themeSkin .mceMenu .mcePreview{font-size:12px}.wp_themeSkin .mceMenu pre.mceText{font-family:Monospace}.wp_themeSkin .mceMenu .mceIcon{position:absolute;top:0;left:0;width:22px}.wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,.wp_themeSkin .mceMenu .mceMenuItemActive{background-color:#f5f5f5}.wp_themeSkin td.mceMenuItemSeparator{height:1px;background-color:#aaa}.wp_themeSkin .mceMenuItemTitle a{border-top:0;border-right:0;border-left:0;border-bottom:1px solid #aaa;text-decoration:none!important;background-color:#ccc}.wp_themeSkin .mceMenuItemTitle span.mceText{font-weight:bold;padding-left:4px;color:#000}.wp_themeSkin .mceMenuItemSelected .mceIcon{background:url("../js/tinymce/themes/advanced/skins/default/img/menu_check.gif");color:#888}.wp_themeSkin .mceNoIcons .mceMenuItemSelected a{background:url("../js/tinymce/themes/advanced/skins/default/img/menu_arrow.gif") no-repeat -6px center}.wp_themeSkin .mceMenu span.mceMenuLine{display:none}.wp_themeSkin .mceMenuItemSub a{background:url("../js/tinymce/themes/advanced/skins/default/img/menu_arrow.gif") no-repeat top right}.wp_themeSkin .mceBlocker{position:absolute;left:0;top:0;z-index:1000;opacity:.5;filter:alpha(opacity=50);background:#FFF}.wp_themeSkin .mceProgress{position:absolute;left:0;top:0;z-index:1001;background:url("../js/tinymce/themes/advanced/skins/default/img/progress.gif") no-repeat;width:32px;height:32px;margin:-16px 0 0 -16px}.wp_themeSkin .mcePlaceHolder{border:1px dotted gray}.wp_themeSkin .mce_address span.mceText{font-style:italic}.wp_themeSkin .mce_pre span.mceText{font-family:monospace}.wp_themeSkin .mce_h1 span.mceText{font-weight:bolder;font-size:17px}.wp_themeSkin .mce_h2 span.mceText{font-weight:bolder;font-size:16px}.wp_themeSkin .mce_h3 span.mceText{font-weight:bolder;font-size:15px}.wp_themeSkin .mce_h4 span.mceText{font-weight:bolder;font-size:14px}.wp_themeSkin .mce_h5 span.mceText{font-weight:bolder;font-size:13px}.wp_themeSkin .mce_h6 span.mceText{font-weight:bolder;font-size:12px}.wp_themeSkin span.mce_undo{background-position:-500px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_undo,.wp_themeSkin .mceButtonActive span.mce_undo{background-position:-500px 0}.wp_themeSkin span.mce_redo{background-position:-480px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_redo,.wp_themeSkin .mceButtonActive span.mce_redo{background-position:-480px 0}.wp_themeSkin span.mce_bullist{background-position:-40px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_bullist,.wp_themeSkin .mceButtonActive span.mce_bullist,.wp_themeSkin .mceSplitButton:hover span.mce_bullist{background-position:-40px 0}.wp_themeSkin span.mce_numlist{background-position:-61px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_numlist,.wp_themeSkin .mceButtonActive span.mce_numlist,.wp_themeSkin .mceSplitButton:hover span.mce_numlist{background-position:-61px 0}.wp_themeSkin span.mce_blockquote{background-position:-80px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_blockquote,.wp_themeSkin .mceButtonActive span.mce_blockquote{background-position:-80px 0}.wp_themeSkin span.mce_charmap{background-position:-420px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_charmap,.wp_themeSkin .mceButtonActive span.mce_charmap{background-position:-420px 0}.wp_themeSkin span.mce_bold{background-position:-1px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_bold,.wp_themeSkin .mceButtonActive span.mce_bold{background-position:-1px 0}.wp_themeSkin span.mce_italic{background-position:-21px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_italic,.wp_themeSkin .mceButtonActive span.mce_italic{background-position:-21px 0}.wp_themeSkin span.mce_underline{background-position:-280px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_underline,.wp_themeSkin .mceButtonActive span.mce_underline{background-position:-280px 1px}.wp_themeSkin span.mce_justifyleft{background-position:-100px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_justifyleft,.wp_themeSkin .mceButtonActive span.mce_justifyleft{background-position:-100px 1px}.wp_themeSkin span.mce_justifyright{background-position:-141px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_justifyright,.wp_themeSkin .mceButtonActive span.mce_justifyright{background-position:-141px 1px}.wp_themeSkin span.mce_justifycenter{background-position:-120px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_justifycenter,.wp_themeSkin .mceButtonActive span.mce_justifycenter{background-position:-120px 1px}.wp_themeSkin span.mce_justifyfull{background-position:-300px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_justifyfull,.wp_themeSkin .mceButtonActive span.mce_justifyfull{background-position:-300px 1px}.wp_themeSkin span.mce_indent{background-position:-461px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_indent,.wp_themeSkin .mceButtonActive span.mce_indent{background-position:-461px 1px}.wp_themeSkin span.mce_outdent{background-position:-440px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_outdent,.wp_themeSkin .mceButtonActive span.mce_outdent{background-position:-440px 1px}.wp_themeSkin span.mce_link{background-position:-161px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_link,.wp_themeSkin .mceButtonActive span.mce_link{background-position:-161px 0}.wp_themeSkin span.mce_unlink{background-position:-180px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_unlink,.wp_themeSkin .mceButtonActive span.mce_unlink{background-position:-180px 0}.wp_themeSkin span.mce_help{background-position:-521px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_help,.wp_themeSkin .mceButtonActive span.mce_help{background-position:-521px 0}.wp_themeSkin span.mce_removeformat{background-position:-381px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_removeformat,.wp_themeSkin .mceButtonActive span.mce_removeformat{background-position:-381px 0}.wp_themeSkin span.mce_strikethrough{background-position:-540px -18px}.wp_themeSkin .mceButtonEnabled:hover span.mce_strikethrough,.wp_themeSkin .mceButtonActive span.mce_strikethrough{background-position:-540px 0}.wp_themeSkin .mceSplitButton .mce_forecolor span.mce_forecolor{background-position:-321px -22px}.wp_themeSkin .mceSplitButtonEnabled:hover span.mce_forecolor,.wp_themeSkin .mceSplitButtonActive span.mce_forecolor{background-position:-321px -2px}.wp_themeSkin .mce_forecolorpicker{background-position:-320px -20px}.wp_themeSkin span.mce_fullscreen{background-position:-240px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_fullscreen,.wp_themeSkin .mceButtonActive span.mce_fullscreen{background-position:-240px 0}.wp_themeSkin span.mce_wp_fullscreen{background-position:-240px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_wp_fullscreen,.wp_themeSkin .mceButtonActive span.mce_wp_fullscreen{background-position:-240px 0}.wp_themeSkin span.mce_media{background-position:-401px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_media,.wp_themeSkin .mceButtonActive span.mce_media{background-position:-401px 0}.wp_themeSkin span.mce_pastetext{background-position:-340px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_pastetext,.wp_themeSkin .mceButtonActive span.mce_pastetext{background-position:-340px 0}.wp_themeSkin span.mce_pasteword{background-position:-360px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_pasteword,.wp_themeSkin .mceButtonActive span.mce_pasteword{background-position:-360px 0}.wp_themeSkin span.mce_spellchecker{background-position:-220px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_spellchecker,.wp_themeSkin .mceSplitButtonEnabled:hover span.mce_spellchecker,.wp_themeSkin .mceButtonActive span.mce_spellchecker,.wp_themeSkin .mceSplitButtonActive span.mce_spellchecker{background-position:-220px 1px}.wp_themeSkin span.mce_wp_help{background-position:-521px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_wp_help,.wp_themeSkin .mceButtonActive span.mce_wp_help{background-position:-521px 0}.wp_themeSkin span.mce_wp_adv{background-position:-260px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_wp_adv,.wp_themeSkin .mceButtonActive span.mce_wp_adv{background-position:-260px 0}.wp_themeSkin span.mce_wp_more{background-position:-201px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_wp_more,.wp_themeSkin .mceButtonActive span.mce_wp_more{background-position:-201px 0}.wp_themeSkin span.mce_cleanup{background-position:-380px -20px}.wp_themeSkin span.mce_anchor{background-position:-200px 0}.wp_themeSkin span.mce_sub{background-position:-600px 0}.wp_themeSkin span.mce_sup{background-position:-620px 0}.wp_themeSkin span.mce_newdocument{background-position:-520px 0}.wp_themeSkin span.mce_image{background-position:-380px 0}.wp_themeSkin span.mce_code{background-position:-260px 0}.wp_themeSkin span.mce_hr{background-position:-360px 0}.wp_themeSkin span.mce_visualaid{background-position:-660px 0}.wp_themeSkin span.mce_paste{background-position:-560px 0}.wp_themeSkin span.mce_copy{background-position:-700px 0}.wp_themeSkin span.mce_cut{background-position:-680px 0}.wp_themeSkin .mce_backcolor span.mceAction{background-position:-760px 0}.wp_themeSkin .mce_backcolorpicker{background-position:-760px 0}.wp_themeSkin span.mce_advhr{background-position:-0px -20px}.wp_themeSkin span.mce_ltr{background-position:-20px -20px}.wp_themeSkin span.mce_rtl{background-position:-40px -20px}.wp_themeSkin span.mce_emotions{background-position:-60px -20px}.wp_themeSkin span.mce_fullpage{background-position:-80px -20px}.wp_themeSkin span.mce_iespell{background-position:-120px -20px}.wp_themeSkin span.mce_insertdate{background-position:-140px -20px}.wp_themeSkin span.mce_inserttime{background-position:-160px -20px}.wp_themeSkin span.mce_absolute{background-position:-180px -20px}.wp_themeSkin span.mce_backward{background-position:-200px -20px}.wp_themeSkin span.mce_forward{background-position:-220px -20px}.wp_themeSkin span.mce_insert_layer{background-position:-240px -20px}.wp_themeSkin span.mce_insertlayer{background-position:-260px -20px}.wp_themeSkin span.mce_movebackward{background-position:-280px -20px}.wp_themeSkin span.mce_moveforward{background-position:-300px -20px}.wp_themeSkin span.mce_nonbreaking{background-position:-340px -20px}.wp_themeSkin span.mce_selectall{background-position:-400px -20px}.wp_themeSkin span.mce_preview{background-position:-420px -20px}.wp_themeSkin span.mce_print{background-position:-440px -20px}.wp_themeSkin span.mce_cancel{background-position:-460px -20px}.wp_themeSkin span.mce_save{background-position:-480px -20px}.wp_themeSkin span.mce_replace{background-position:-500px -20px}.wp_themeSkin span.mce_search{background-position:-520px -20px}.wp_themeSkin span.mce_styleprops{background-position:-560px -20px}.wp_themeSkin span.mce_table{background-position:-580px -20px}.wp_themeSkin span.mce_cell_props{background-position:-600px -20px}.wp_themeSkin span.mce_delete_table{background-position:-620px -20px}.wp_themeSkin span.mce_delete_col{background-position:-640px -20px}.wp_themeSkin span.mce_delete_row{background-position:-660px -20px}.wp_themeSkin span.mce_col_after{background-position:-680px -20px}.wp_themeSkin span.mce_col_before{background-position:-700px -20px}.wp_themeSkin span.mce_row_after{background-position:-720px -20px}.wp_themeSkin span.mce_row_before{background-position:-740px -20px}.wp_themeSkin span.mce_merge_cells{background-position:-760px -20px}.wp_themeSkin span.mce_table_props{background-position:-980px -20px}.wp_themeSkin span.mce_row_props{background-position:-780px -20px}.wp_themeSkin span.mce_split_cells{background-position:-800px -20px}.wp_themeSkin span.mce_template{background-position:-820px -20px}.wp_themeSkin span.mce_visualchars{background-position:-840px -20px}.wp_themeSkin span.mce_abbr{background-position:-860px -20px}.wp_themeSkin span.mce_acronym{background-position:-880px -20px}.wp_themeSkin span.mce_attribs{background-position:-900px -20px}.wp_themeSkin span.mce_cite{background-position:-920px -20px}.wp_themeSkin span.mce_del{background-position:-940px -20px}.wp_themeSkin span.mce_ins{background-position:-960px -20px}.wp_themeSkin span.mce_pagebreak{background-position:0 -40px}.wp_themeSkin .mceExternalToolbar,.wp_themeSkin .mceButton,.wp_themeSkin a.mceButtonEnabled:hover,.wp_themeSkin a.mceButtonActive,.wp_themeSkin a.mceButtonSelected,.wp_themeSkin .mceListBox .mceText,.wp_themeSkin .mceListBox .mceOpen,.wp_themeSkin table.mceListBoxEnabled:hover .mceText,.wp_themeSkin .mceListBoxHover .mceText,.wp_themeSkin .mceListBoxSelected .mceText,.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,.wp_themeSkin .mceListBoxHover .mceOpen,.wp_themeSkin .mceListBoxSelected .mceOpen,.wp_themeSkin select.mceListBox,.wp_themeSkin .mceSplitButton a.mceAction,.wp_themeSkin .mceSplitButton a.mceOpen,.wp_themeSkin .mceSplitButton a.mceOpen:hover,.wp_themeSkin .mceSplitButtonSelected a.mceOpen,.wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,.wp_themeSkin .mceSplitButton a.mceAction:hover,.wp_themeSkin div.mceColorSplitMenu table,.wp_themeSkin .mceColorSplitMenu a,.wp_themeSkin .mceColorSplitMenu a.mceMoreColors,.wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover,.wp_themeSkin a.mceMoreColors:hover,.wp_themeSkin .mceMenu{border-style:solid;border-width:1px}.wp_themeSkin iframe{background:transparent}.wp_themeSkin .mceButton,.wp_themeSkin .mceListBox .mceText,.wp_themeSkin .mceListBox .mceOpen{border-color:#ccc;background-color:#eee;background-image:-ms-linear-gradient(bottom,#ddd,#fff);background-image:-moz-linear-gradient(bottom,#ddd,#fff);background-image:-o-linear-gradient(bottom,#ddd,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ddd),to(#fff));background-image:-webkit-linear-gradient(bottom,#ddd,#fff);background-image:linear-gradient(bottom,#ddd,#fff)}.wp_themeSkin a.mceButtonEnabled:hover{border-color:#a0a0a0;background:#ddd;background-image:-ms-linear-gradient(bottom,#ccc,#fff);background-image:-moz-linear-gradient(bottom,#ccc,#fff);background-image:-o-linear-gradient(bottom,#ccc,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ccc),to(#fff));background-image:-webkit-linear-gradient(bottom,#ccc,#fff);background-image:linear-gradient(bottom,#ccc,#fff)}.wp_themeSkin a.mceButton:active,.wp_themeSkin a.mceButtonEnabled:active,.wp_themeSkin a.mceButtonSelected:active,.wp_themeSkin a.mceButtonActive,.wp_themeSkin a.mceButtonActive:active,.wp_themeSkin a.mceButtonActive:hover{background-color:#ddd;background-image:-ms-linear-gradient(bottom,#eee,#bbb);background-image:-moz-linear-gradient(bottom,#eee,#bbb);background-image:-o-linear-gradient(bottom,#eee,#bbb);background-image:-webkit-gradient(linear,left bottom,left top,from(#eee),to(#bbb));background-image:-webkit-linear-gradient(bottom,#eee,#bbb);background-image:linear-gradient(bottom,#eee,#bbb);border-color:#909090}.wp_themeSkin .mceButtonDisabled{border-color:#ccc!important}.wp_themeSkin .mceListBox .mceOpen{border-left:0!important}.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,.wp_themeSkin .mceListBoxHover .mceOpen,.wp_themeSkin .mceListBoxHover:active .mceOpen,.wp_themeSkin .mceListBoxSelected .mceOpen,.wp_themeSkin .mceListBoxSelected .mceText,.wp_themeSkin table.mceListBoxEnabled:active .mceText{background:#ccc;border-color:#999}.wp_themeSkin table.mceListBoxEnabled:hover .mceText,.wp_themeSkin .mceListBoxHover .mceText,.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,.wp_themeSkin .mceListBoxHover .mceOpen{border-color:#909090;background-color:#eee;background-image:-ms-linear-gradient(bottom,#ccc,#fff);background-image:-moz-linear-gradient(bottom,#ccc,#fff);background-image:-o-linear-gradient(bottom,#ccc,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ccc),to(#fff));background-image:-webkit-linear-gradient(bottom,#ccc,#fff);background-image:linear-gradient(bottom,#ccc,#fff)}.wp_themeSkin .mceSplitButton a.mceAction,.wp_themeSkin .mceSplitButton a.mceOpen{border-color:#ccc}.wp_themeSkin .mceSplitButton a.mceOpen:hover,.wp_themeSkin .mceSplitButtonSelected a.mceOpen,.wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,.wp_themeSkin .mceSplitButton a.mceAction:hover{border-color:#909090}.wp_themeSkin table.mceSplitButton td{background-color:#eee;background-image:-ms-linear-gradient(bottom,#ddd,#fff);background-image:-moz-linear-gradient(bottom,#ddd,#fff);background-image:-o-linear-gradient(bottom,#ddd,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ddd),to(#fff));background-image:-webkit-linear-gradient(bottom,#ddd,#fff);background-image:linear-gradient(bottom,#ddd,#fff)}.wp_themeSkin table.mceSplitButton:hover td{background-image:-ms-linear-gradient(bottom,#ccc,#fff);background-image:-moz-linear-gradient(bottom,#ccc,#fff);background-image:-o-linear-gradient(bottom,#ccc,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ccc),to(#fff));background-image:-webkit-linear-gradient(bottom,#ccc,#fff);background-image:linear-gradient(bottom,#ccc,#fff)}.wp_themeSkin .mceSplitButtonActive{background-color:#b2b2b2}.wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover{border-color:#0a246a;background-color:#b6bdd2}.wp_themeSkin a.mceMoreColors:hover{border-color:#0a246a}.wp_themeSkin .mceMenuItemDisabled .mceText{color:#888}#mceModalBlocker{background:#000}.wp-editor-area{font-family:Consolas,Monaco,monospace;padding:10px;line-height:150%;border:0 none;outline:0;resize:vertical;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.wp-editor-tools{height:30px;padding:0 10px}.wp-editor-container{border-width:1px;border-style:solid;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px;border-color:#ccc #ccc #dfdfdf}.wp-editor-container textarea.wp-editor-area{width:99.9%}.quicktags-toolbar,.wp_themeSkin tr.mceFirst td.mceToolbar{border-bottom:1px solid #ccc;background-color:#e9e9e9;background-image:-ms-linear-gradient(bottom,#ddd,#e9e9e9);background-image:-moz-linear-gradient(bottom,#ddd,#e9e9e9);background-image:-o-linear-gradient(bottom,#ddd,#e9e9e9);background-image:-webkit-linear-gradient(bottom,#ddd,#e9e9e9);background-image:linear-gradient(bottom,#ddd,#e9e9e9)}.wp-switch-editor{height:18px;font:13px/18px Arial,Helvetica,sans-serif normal;margin:5px 5px 0 0;padding:4px 5px 2px;float:right;cursor:pointer;border-width:1px;border-style:solid;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px;background-color:#f1f1f1;border-color:#dfdfdf #dfdfdf #ccc;color:#999}html[dir="rtl"] .wp-switch-editor{float:left}.wp-switch-editor:hover{text-decoration:none!important}.js .tmce-active .wp-editor-area{color:white}.tmce-active .quicktags-toolbar{display:none}.tmce-active .switch-tmce,.html-active .switch-html{border-color:#ccc #ccc #e9e9e9;background-color:#e9e9e9;color:#333}.wp-media-buttons{line-height:1;padding:9px 0 0}.wp-media-buttons a{text-decoration:none;color:#333;font-size:12px;vertical-align:bottom}.wp-media-buttons img{padding:0 4px;vertical-align:middle}.quicktags-toolbar{border-bottom-style:solid;border-bottom-width:1px;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px;padding:2px 8px 0;min-height:29px}.quicktags-toolbar>div{padding:2px 4px 0}.quicktags-toolbar input{margin:2px 1px 4px;line-height:18px;display:inline-block;min-width:26px;padding:2px 4px;font:12px/18px Arial,Helvetica,sans-serif normal;color:#464646;border:1px solid #c3c3c3;-webkit-border-radius:3px;border-radius:3px;background-color:#eee;background-image:-ms-linear-gradient(bottom,#e3e3e3,#fff);background-image:-moz-linear-gradient(bottom,#e3e3e3,#fff);background-image:-o-linear-gradient(bottom,#e3e3e3,#fff);background-image:-webkit-linear-gradient(bottom,#e3e3e3,#fff);background-image:linear-gradient(bottom,#e3e3e3,#fff)}.quicktags-toolbar input:hover{border-color:#aaa;background:#ddd}.quicktags-toolbar input[value="link"]{text-decoration:underline}.quicktags-toolbar input[value="del"]{text-decoration:line-through}.quicktags-toolbar input[value="i"]{font-style:italic}.quicktags-toolbar input[value="b"]{font-weight:bold}#wp_editbtns,#wp_gallerybtns{padding:2px;position:absolute;display:none;z-index:999998}#wp_editimgbtn,#wp_delimgbtn,#wp_editgallery,#wp_delgallery{border-color:#999;background-color:#eee;margin:2px;padding:2px;border-width:1px;border-style:solid;-webkit-border-radius:3px;border-radius:3px}#wp_editimgbtn:hover,#wp_delimgbtn:hover,#wp_editgallery:hover,#wp_delgallery:hover{border-color:#555;background-color:#ccc}#wp-link{background-color:#f5f5f5;line-height:1.4em;font-size:12px}#wp-link ol,#wp-link ul{list-style:none;margin:0;padding:0}#wp-link input[type="text"]{-webkit-box-sizing:border-box}#wp-link input[type="text"],#wp-link textarea{border-width:1px;border-style:solid;-webkit-border-radius:4px;border-radius:4px;font-size:12px;margin:1px;padding:3px}#wp-link #link-options{padding:10px 0 14px;border-bottom:1px solid #dfdfdf;margin:0 6px 14px}#wp-link p.howto{margin:3px}#wp-link #internal-toggle{display:inline-block;cursor:pointer;padding-left:18px}#wp-link .toggle-arrow{background:transparent url('../images/toggle-arrow.png') top left no-repeat;height:23px;line-height:23px}#wp-link .toggle-arrow-active{background-position:center left}#wp-link label input[type="text"]{width:360px;margin-top:5px}#wp-link label span{display:inline-block;width:80px;text-align:right;padding-right:5px}#wp-link .link-search-wrapper{margin:5px 6px 9px;display:block;overflow:hidden}#wp-link .link-search-wrapper span{float:left;margin-top:6px}#wp-link .link-search-wrapper input[type="text"]{float:left;width:220px}#wp-link .link-search-wrapper img.waiting{margin:8px 1px 0 4px;float:left;display:none}#wp-link .link-target{width:auto;padding:3px 0 0;margin:0 0 0 87px;font-size:11px}#wp-link .query-results{border:1px #dfdfdf solid;margin:0 5px 5px;background:#fff;height:185px;overflow:auto;position:relative}#wp-link li,#wp-link .query-notice{clear:both;margin-bottom:0;border-bottom:1px solid #f1f1f1;color:#333;padding:4px 6px;cursor:pointer;position:relative}#wp-link li:hover{background:#eaf2fa;color:#151515}#wp-link li.unselectable{border-bottom:1px solid #dfdfdf}#wp-link li.unselectable:hover{background:#fff;cursor:auto;color:#333}#wp-link li.selected{background:#ddd;color:#333}#wp-link li.selected .item-title{font-weight:bold}#wp-link .item-title{display:inline-block;width:80%}#wp-link .item-info{text-transform:uppercase;color:#666;font-size:11px;position:absolute;right:5px;top:4px;bottom:0}#wp-link #search-results{display:none}#wp-link #search-panel{float:left;width:100%}#wp-link .river-waiting{display:none;padding:10px 0}#wp-link .river-waiting img.waiting{margin:0 auto;display:block}#wp-link .submitbox{padding:5px 10px;font-size:11px;overflow:auto;height:29px}#wp-link-cancel{line-height:25px;float:left}#wp-link-update{line-height:23px;float:right}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute;left:-99999999px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui-helper-clearfix{display:inline-block}/*\*/* html .ui-helper-clearfix{height:1%}.ui-helper-clearfix{display:block}/**/.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;z-index:99999;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.wp-dialog{position:absolute;width:300px;overflow:hidden}.wp-dialog .ui-dialog-titlebar{position:relative}.wp-dialog .ui-dialog-titlebar-close span{display:block;margin:1px}.wp-dialog .ui-dialog-content{position:relative;border:0;padding:0;background:0;overflow:auto;zoom:1}.wp-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.wp-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.wp-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.wp-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move}.wp-dialog{border:1px solid #999;-moz-box-shadow:0 0 16px rgba(0,0,0,0.3);-webkit-box-shadow:0 0 16px rgba(0,0,0,0.3);box-shadow:0 0 16px rgba(0,0,0,0.3)}.wp-dialog .ui-dialog-title{display:block;text-align:center;padding:1px 0 2px}.wp-dialog .ui-dialog-titlebar{padding:0 1em;background-color:#444;font-weight:bold;font-size:11px;line-height:18px;color:#e5e5e5}.wp-dialog{background-color:#fff;-webkit-border-top-left-radius:4px;-webkit-border-top-right-radius:4px;border-top-left-radius:4px;border-top-right-radius:4px}.wp-dialog .ui-dialog-titlebar{-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.wp-dialog .ui-dialog-titlebar-close{position:absolute;width:29px;height:16px;top:2px;right:6px;background:url('../js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif') no-repeat -87px -16px;padding:0}.wp-dialog .ui-dialog-titlebar-close:hover,.wp-dialog .ui-dialog-titlebar-close:focus{background-position:-87px -32px}.ui-widget-overlay{background-color:#000;opacity:.6;filter:alpha(opacity=60)}.rtl #wp-link #internal-toggle{padding-right:18px;padding-left:0}.rtl #wp-link label span{text-align:left;padding-left:5px;padding-right:0}.rtl #wp-link .link-search-wrapper span{float:right}.rtl #wp-link .link-search-wrapper input[type="text"]{float:right}.rtl #wp-link .link-search-wrapper img.waiting{margin:8px 4px 0 1px;float:right}.rtl #wp-link .link-target{margin:0 87px 0 0}.rtl #wp-link .item-info{left:5px;right:auto;top:4px;bottom:0}.rtl #wp-link #search-panel{float:right}.rtl #wp-link-cancel{float:right}.rtl #wp-link-update{float:left}.rtl #wp-link .toggle-arrow{background-position:top right}.rtl #wp-link .toggle-arrow-active{background-position:center right}.rtl .wp_themeSkin .mceListBox .mceText{text-align:right}.rtl .wp_themeSkin .mceNoIcons a .mceText{padding-right:10px;padding-left:25px}.rtl .mceListBoxMenu.mceNoIcons{margin-left:-14px}.clearlooks2 .mceFocus .mceTop .mceLeft{background:#444;border-left:1px solid #999;border-top:1px solid #999;-webkit-border-top-left-radius:3px;border-top-left-radius:3px}.clearlooks2 .mceFocus .mceTop .mceRight{background:#444;border-right:1px solid #999;border-top:1px solid #999;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.clearlooks2 .mceMiddle .mceLeft{background:#f1f1f1;border-left:1px solid #999}.clearlooks2 .mceMiddle .mceRight{background:#f1f1f1;border-right:1px solid #999}.clearlooks2 .mceBottom{background:#f1f1f1;border-bottom:1px solid #999}.clearlooks2 .mceBottom .mceLeft{background:#f1f1f1;border-bottom:1px solid #999;border-left:1px solid #999}.clearlooks2 .mceBottom .mceCenter{background:#f1f1f1;border-bottom:1px solid #999}.clearlooks2 .mceBottom .mceRight{background:#f1f1f1;border-bottom:1px solid #999;border-right:1px solid #999}.clearlooks2 .mceFocus .mceTop span{color:#e5e5e5}.fullscreen-overlay{z-index:149999;display:none;position:fixed;top:0;bottom:0;left:0;right:0;filter:inherit}.fullscreen-active .fullscreen-overlay,.fullscreen-active #wp-fullscreen-body{display:block}.fullscreen-fader{z-index:200000}.fullscreen-active .fullscreen-fader{display:none}#wp-fullscreen-body{width:100%;z-index:150005;display:none;position:absolute;top:0;left:0;font-size:12px}#wp-fullscreen-wrap{margin:0 auto 50px;position:relative;padding-top:60px}#wp-fullscreen-title{font-size:1.7em;line-height:100%;outline:medium none;padding:6px 7px;width:100%;margin-bottom:30px}#wp-fullscreen-container{padding:4px 10px 50px}#wp-fullscreen-title,#wp-fullscreen-container{-webkit-border-radius:0;border-radius:0;border:1px dashed transparent;background:transparent;-moz-transition-property:border-color;-moz-transition-duration:.6s;-webkit-transition-property:border-color;-webkit-transition-duration:.6s;-o-transition-property:border-color;-o-transition-duration:.6s;transition-property:border-color;transition-duration:.6s}#wp_mce_fullscreen{width:100%;min-height:300px;border:0;background:transparent;font-family:Consolas,Monaco,monospace;line-height:1.6em;padding:0;overflow-y:hidden;outline:0;resize:none}#wp-fullscreen-tagline{color:#bbb;font-size:18px;float:right;padding-top:5px}#fullscreen-topbar{position:fixed;top:0;left:0;z-index:150050;border-bottom-style:solid;border-bottom-width:1px;min-width:800px;width:100%;height:40px}#wp-fullscreen-toolbar{padding:6px 10px 0;clear:both;max-width:1100px;min-width:820px;margin:0 auto}#wp-fullscreen-mode-bar,#wp-fullscreen-button-bar,#wp-fullscreen-close,#wp-fullscreen-count{float:left}#wp-fullscreen-save{float:right;padding:2px 2px 0 5px}#wp-fullscreen-count,#wp-fullscreen-close{padding-top:5px}#wp-fullscreen-central-toolbar{margin:auto;padding:0}#wp-fullscreen-buttons>div{float:left}#wp-fullscreen-mode-bar{padding:1px 14px 0 0}#wp-fullscreen-modes a{display:block;font-size:11px;text-decoration:none;float:left;margin:1px 0 0 0;padding:2px 6px 2px;border-width:1px 1px 1px 0;border-style:solid;border-color:#bbb;color:#777;text-shadow:0 1px 0 #fff;background-color:#f4f4f4;background-image:-moz-linear-gradient(bottom,#e4e4e4,#f9f9f9);background-image:-webkit-gradient(linear,left bottom,left top,from(#e4e4e4),to(#f9f9f9))}#wp-fullscreen-modes a:hover,.wp-html-mode #wp-fullscreen-modes a:last-child,.wp-tmce-mode #wp-fullscreen-modes a:first-child{color:#333;border-color:#999;background-color:#eee;background-image:-moz-linear-gradient(bottom,#f9f9f9,#e0e0e0);background-image:-webkit-gradient(linear,left bottom,left top,from(#f9f9f9),to(#e0e0e0))}#wp-fullscreen-modes a:first-child{border-width:1px;-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:3px}#wp-fullscreen-modes a:last-child{-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px}#wp-fullscreen-buttons .active a{background:inherit}#wp-fullscreen-buttons .hidden{display:none}#wp-fullscreen-buttons .disabled{opacity:.5}.wp-html-mode #wp-fullscreen-buttons div{display:none}.wp-html-mode #wp-fullscreen-buttons div.wp-fullscreen-both{display:block}#fullscreen-topbar.fullscreen-make-sticky{display:block!important}#wp-fullscreen-save img{vertical-align:middle}#wp-fullscreen-save img,#wp-fullscreen-save span{padding-right:4px;display:none}#wp-fullscreen-buttons .mce_image .mce_image{background-image:url('../../wp-admin/images/media-button.png?ver=20120201');background-position:3px 3px}.fullscreen-active #TB_overlay{z-index:150100}.fullscreen-active #TB_window{z-index:150102}#wp_mce_fullscreen_ifr{background:transparent}#wp_mce_fullscreen_parent #wp_mce_fullscreen_tbl tr.mceFirst{display:none}#wp-fullscreen-container .wp_themeSkin table td{vertical-align:top}.fullscreen-overlay{background:#fff}.wp-fullscreen-focus #wp-fullscreen-title,.wp-fullscreen-focus #wp-fullscreen-container{border-color:#ccc}#fullscreen-topbar{border-bottom-color:#dfdfdf;background-color:#f1f1f1;background-image:-ms-linear-gradient(top,#f9f9f9,#ececec);background-image:-moz-linear-gradient(top,#f9f9f9,#ececec);background-image:-o-linear-gradient(top,#f9f9f9,#ececec);background-image:-webkit-gradient(linear,left top,left bottom,from(#f9f9f9),to(#ececec));background-image:-webkit-linear-gradient(top,#f9f9f9,#ececec);background-image:linear-gradient(top,#f9f9f9,#ececec)}.fade-1000,.fade-600,.fade-400,.fade-300{opacity:0;-moz-transition-property:opacity;-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.fade-1000{-moz-transition-duration:1s;-webkit-transition-duration:1s;-o-transition-duration:1s;transition-duration:1s}.fade-600{-moz-transition-duration:.6s;-webkit-transition-duration:.6s;-o-transition-duration:.6s;transition-duration:.6s}.fade-400{-moz-transition-duration:.4s;-webkit-transition-duration:.4s;-o-transition-duration:.4s;transition-duration:.4s}.fade-300{-moz-transition-duration:.3s;-webkit-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.fade-trigger{opacity:1}.rtl #wp-fullscreen-tagline{float:left}.rtl #fullscreen-topbar{left:auto;right:0}.rtl #wp-fullscreen-mode-bar,.rtl #wp-fullscreen-button-bar,.rtl #wp-fullscreen-close,.rtl #wp-fullscreen-count{float:right}.rtl #wp-fullscreen-save{float:left}.rtl #wp-fullscreen-save{padding:2px 5px 0 2px}.rtl #wp-fullscreen-buttons>div{float:right}.rtl #wp-fullscreen-mode-bar{padding:1px 0 0 14px}.rtl #wp-fullscreen-modes a{float:right;border-width:1px 0 1px 1px}.rtl #wp-fullscreen-modes a:first-child{-webkit-border-top-left-radius:0;-webkit-border-top-right-radius:3px;-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:3px;border-width:1px;border-top-left-radius:0;border-top-right-radius:3px;border-bottom-right-left:0;border-bottom-right-radius:3px}.rtl #wp-fullscreen-modes a:last-child{-webkit-border-top-right-radius:0;-webkit-border-top-left-radius:3px;-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:3px;border-top-right-radius:0;border-top-left-radius:3px;border-bottom-right-radius:0;border-bottom-left-radius:3px}.rtl #wp-fullscreen-save img,.rtl #wp-fullscreen-save span{padding-right:0;padding-left:4px}
\ No newline at end of file
--- 1 ----
! .wp_themeSkin table,.wp_themeSkin tbody,.wp_themeSkin a,.wp_themeSkin img,.wp_themeSkin tr,.wp_themeSkin div,.wp_themeSkin td,.wp_themeSkin iframe,.wp_themeSkin span,.wp_themeSkin *,.wp_themeSkin .mceText{border:0;margin:0;padding:0;white-space:nowrap;text-decoration:none;font-weight:normal;cursor:default;vertical-align:baseline;width:auto;border-collapse:separate}.wp_themeSkin a:hover,.wp_themeSkin a:link,.wp_themeSkin a:visited,.wp_themeSkin a:active{text-decoration:none;font-weight:normal;cursor:default}.wp_themeSkin table td{vertical-align:middle}.wp_themeSkin *,.wp_themeSkin a:hover,.wp_themeSkin a:link,.wp_themeSkin a:visited,.wp_themeSkin a:active{color:#000}.wp_themeSkin iframe{display:block}.wp_themeSkin #mce_fullscreen_ifr{background-color:#fff}.wp_themeSkin .mceToolbar{padding:1px}.wp_themeSkin .mceExternalToolbar{position:absolute;border-bottom:0;display:none}.wp_themeSkin .mceExternalToolbar td.mceToolbar{padding-right:13px}.wp_themeSkin .mceExternalClose{position:absolute;top:3px;right:3px;width:7px;height:7px;background:url("../js/tinymce/themes/advanced/img/icons.gif") -820px 0}.wp_themeSkin table.mceToolbar,.wp_themeSkin tr.mceFirst .mceToolbar tr td,.wp_themeSkin tr.mceLast .mceToolbar tr td{border:0;margin:0;padding:0}.wp_themeSkin table.mceLayout{border:0}.wp_themeSkin .mceStatusbar{display:block;font-family:Arial,"Bitstream Vera Sans",Helvetica,Verdana,sans-serif;font-size:12px;line-height:16px;padding:0 0 0 8px;overflow:visible;height:20px;border-top:1px solid #dfdfdf;color:#000;background-color:#f5f5f5}.rtl .wp_themeSkin .mceStatusbar{padding:0 8px 0 0}.wp_themeSkin .mceStatusbar *{color:#555}.wp_themeSkin .mceStatusbar div{float:left;padding:2px}.rtl .wp_themeSkin .mceStatusbar div{float:right}.wp_themeSkin .mceStatusbar a.mceResize{display:block;float:right;background:url("../js/tinymce/themes/advanced/img/icons.gif") -800px 0;width:20px;height:20px;cursor:se-resize}.rtl .wp_themeSkin .mceStatusbar a.mceResize{float:left}.wp_themeSkin .mceStatusbar a:hover{text-decoration:underline}.wp_themeSkin table.mceToolbar{margin:0 6px 2px}.wp_themeSkin #content_toolbar1{margin-top:2px}.wp_themeSkin .mceToolbar .mceToolbarEndListBox span{display:none}.wp_themeSkin span.mceIcon,.wp_themeSkin img.mceIcon{display:block;width:20px;height:20px}.wp_themeSkin .mceIcon{background:url("../js/tinymce/themes/advanced/img/icons.gif") no-repeat 20px 20px}.wp_themeSkin .mceButton{display:block;width:20px;height:20px;cursor:default;padding:1px 2px;margin:1px;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff}.wp_themeSkin a.mceButtonEnabled:hover{background-image:inherit 0 -10px}.wp_themeSkin .mceOldBoxModel a.mceButton span,.wp_themeSkin .mceOldBoxModel a.mceButton img{margin:0 0 0 1px}.wp_themeSkin a.mceButton:active,.wp_themeSkin a.mceButtonActive,.wp_themeSkin a.mceButtonActive:hover,.wp_themeSkin a.mceButtonSelected{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff}.wp_themeSkin .mceButtonDisabled .mceIcon{opacity:.5;filter:alpha(opacity=50)}.wp_themeSkin .mceSeparator{height:24px;width:1px;display:block;background:transparent;overflow:hidden;margin:0 2px}.wp_themeSkin .mceListBox,.wp_themeSkin .mceListBox a{display:block}.wp_themeSkin .mceListBox .mceText{padding:1px 2px 1px 5px;text-align:left;text-decoration:none;width:70px;-webkit-border-bottom-left-radius:2px;-webkit-border-top-left-radius:2px;border-bottom-left-radius:2px;border-top-left-radius:2px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;font-family:Arial,"Bitstream Vera Sans",Helvetica,Verdana,sans-serif;font-size:12px;height:20px;line-height:20px;overflow:hidden}.wp_themeSkin .mceListBox{margin:1px;direction:ltr}.wp_themeSkin .mceListBox .mceOpen{width:14px;height:20px;border-collapse:separate;padding:1px;-webkit-border-bottom-left-radius:0;-webkit-border-top-left-radius:0;border-bottom-left-radius:0;border-top-left-radius:0;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff}.wp_themeSkin .mceListBox .mceOpen span{display:block;width:14px;height:20px;background-image:url("../images/down_arrow.gif");background-position:2px 1px;background-repeat:no-repeat}.wp_themeSkin table.mceListBoxEnabled:hover .mceText,.wp_themeSkin .mceListBoxHover .mceText,.wp_themeSkin .mceListBoxSelected .mceText,.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,.wp_themeSkin .mceListBoxHover .mceOpen,.wp_themeSkin .mceListBoxSelected .mceOpen{background-image:none}.wp_themeSkin .mceListBoxDisabled .mceText{color:gray}.wp_themeSkin .mceListBoxMenu{overflow:auto;overflow-x:hidden}.wp_themeSkin .mceOldBoxModel .mceListBox .mceText{height:22px}.wp_themeSkin select.mceListBox{font-family:Arial,"Bitstream Vera Sans",Helvetica,Verdana,sans-serif;font-size:12px;border-color:#b2b2b2;background-color:#fff}.wp_themeSkin .mceSplitButton a,.wp_themeSkin .mceSplitButton span{display:block;height:20px}.wp_themeSkin .mceSplitButton{display:block;margin:1px;direction:ltr}.wp_themeSkin table.mceSplitButton td{padding:2px;-webkit-border-radius:2px;border-radius:2px}.wp_themeSkin table.mceSplitButton td a{-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;-moz-box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,0.15),inset 0 0 2px 1px #fff}.wp_themeSkin table.mceSplitButton:hover td{background-image:inherit 0 -10px}.wp_themeSkin .mceSplitButton a.mceAction{height:20px;width:20px;padding:1px 2px}.wp_themeSkin .mceSplitButton span.mceAction{background-image:url("../js/tinymce/themes/advanced/img/icons.gif");background-repeat:no-repeat;background-color:transparent;width:20px}.wp_themeSkin .mceSplitButton a.mceOpen{width:10px;height:20px;background-image:url("../images/down_arrow.gif");background-position:1px 2px;background-repeat:no-repeat;padding:1px;border-left:0 none!important}.wp_themeSkin .mceSplitButton span.mceOpen{display:none}.wp_themeSkin .mceSplitButtonDisabled .mceAction{opacity:.3;filter:alpha(opacity=30)}.wp_themeSkin .mceListBox a.mceText,.wp_themeSkin .mceSplitButton a.mceAction{-webkit-border-bottom-left-radius:2px;-webkit-border-top-left-radius:2px;border-bottom-left-radius:2px;border-top-left-radius:2px}.wp_themeSkin .mceSplitButton a.mceOpen,.wp_themeSkin .mceListBox a.mceOpen{-webkit-border-bottom-right-radius:2px;-webkit-border-top-right-radius:2px;border-bottom-right-radius:2px;border-top-right-radius:2px}.wp_themeSkin span.mce_undo,.wp_themeSkin span.mce_redo,.wp_themeSkin span.mce_bullist,.wp_themeSkin span.mce_numlist,.wp_themeSkin span.mce_blockquote,.wp_themeSkin span.mce_charmap,.wp_themeSkin span.mce_bold,.wp_themeSkin span.mce_italic,.wp_themeSkin span.mce_underline,.wp_themeSkin span.mce_justifyleft,.wp_themeSkin span.mce_justifyright,.wp_themeSkin span.mce_justifycenter,.wp_themeSkin span.mce_justifyfull,.wp_themeSkin span.mce_indent,.wp_themeSkin span.mce_outdent,.wp_themeSkin span.mce_link,.wp_themeSkin span.mce_unlink,.wp_themeSkin span.mce_help,.wp_themeSkin span.mce_removeformat,.wp_themeSkin span.mce_fullscreen,.wp_themeSkin span.mce_wp_fullscreen,.wp_themeSkin span.mce_media,.wp_themeSkin span.mce_pastetext,.wp_themeSkin span.mce_pasteword,.wp_themeSkin span.mce_wp_help,.wp_themeSkin span.mce_wp_adv,.wp_themeSkin span.mce_wp_more,.wp_themeSkin span.mce_strikethrough,.wp_themeSkin span.mce_spellchecker,.wp_themeSkin span.mce_forecolor,.wp_themeSkin .mce_forecolorpicker,.wp_themeSkin .mceSplitButton .mce_spellchecker span.mce_spellchecker,.wp_themeSkin .mceSplitButton .mce_forecolor span.mce_forecolor,.wp_themeSkin .mceSplitButton span.mce_numlist,.wp_themeSkin .mceSplitButton span.mce_bullist{background-image:url(../images/wpicons.png)}.wp_themeSkin div.mceColorSplitMenu table{background-color:#ebebeb;border-color:#b2b2b2}.wp_themeSkin .mceColorSplitMenu td{padding:2px}.wp_themeSkin .mceColorSplitMenu a{display:block;width:9px;height:9px;overflow:hidden;border-color:#b2b2b2}.wp_themeSkin .mceColorSplitMenu td.mceMoreColors{padding:1px 3px 1px 1px}.wp_themeSkin .mceColorSplitMenu a.mceMoreColors{width:100%;height:auto;text-align:center;font-family:Tahoma,Verdana,Arial,Helvetica;font-size:11px;line-height:20px;border-color:#fff}.wp_themeSkin .mceColorPreview{margin:-5px 0 0 2px;width:16px;height:4px;overflow:hidden}.wp_themeSkin .mceMenu{position:absolute;left:0;top:0;z-index:1000;border-color:#ddd}.wp_themeSkin .mceNoIcons span.mceIcon{width:0}.wp_themeSkin .mceNoIcons a .mceText{padding-left:10px}.wp_themeSkin .mceMenu table{background-color:#ebeaeb}.wp_themeSkin .mceMenu a,.wp_themeSkin .mceMenu span,.wp_themeSkin .mceMenu{display:block}.wp_themeSkin .mceMenu td{height:20px;overflow:hidden}.wp_themeSkin .mceMenu a{position:relative;padding:3px 0 4px 0;text-decoration:none!important}.wp_themeSkin .mceMenu .mceText{position:relative;display:block;font-family:Tahoma,Verdana,Arial,Helvetica;cursor:default;margin:0;padding:0 25px;color:#000}.wp_themeSkin .mceMenu span.mceText,.wp_themeSkin .mceMenu .mcePreview{font-size:12px}.wp_themeSkin .mceMenu pre.mceText{font-family:Monospace}.wp_themeSkin .mceMenu .mceIcon{position:absolute;top:0;left:0;width:22px}.wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,.wp_themeSkin .mceMenu .mceMenuItemActive{background-color:#f5f5f5}.wp_themeSkin td.mceMenuItemSeparator{height:1px;background-color:#aaa}.wp_themeSkin .mceMenuItemTitle a{border-top:0;border-right:0;border-left:0;border-bottom:1px solid #aaa;text-decoration:none!important;background-color:#ccc}.wp_themeSkin .mceMenuItemTitle span.mceText{font-weight:bold;padding-left:4px;color:#000}.wp_themeSkin .mceMenuItemSelected .mceIcon{background:url("../js/tinymce/themes/advanced/skins/default/img/menu_check.gif");color:#888}.wp_themeSkin .mceNoIcons .mceMenuItemSelected a{background:url("../js/tinymce/themes/advanced/skins/default/img/menu_arrow.gif") no-repeat -6px center}.wp_themeSkin .mceMenu span.mceMenuLine{display:none}.wp_themeSkin .mceMenuItemSub a{background:url("../js/tinymce/themes/advanced/skins/default/img/menu_arrow.gif") no-repeat top right}.wp_themeSkin .mceBlocker{position:absolute;left:0;top:0;z-index:1000;opacity:.5;filter:alpha(opacity=50);background:#FFF}.wp_themeSkin .mceProgress{position:absolute;left:0;top:0;z-index:1001;background:url("../js/tinymce/themes/advanced/skins/default/img/progress.gif") no-repeat;width:32px;height:32px;margin:-16px 0 0 -16px}.wp_themeSkin .mcePlaceHolder{border:1px dotted gray}.wp_themeSkin .mce_address span.mceText{font-style:italic}.wp_themeSkin .mce_pre span.mceText{font-family:monospace}.wp_themeSkin .mce_h1 span.mceText{font-weight:bolder;font-size:17px}.wp_themeSkin .mce_h2 span.mceText{font-weight:bolder;font-size:16px}.wp_themeSkin .mce_h3 span.mceText{font-weight:bolder;font-size:15px}.wp_themeSkin .mce_h4 span.mceText{font-weight:bolder;font-size:14px}.wp_themeSkin .mce_h5 span.mceText{font-weight:bolder;font-size:13px}.wp_themeSkin .mce_h6 span.mceText{font-weight:bolder;font-size:12px}.wp_themeSkin span.mce_undo{background-position:-500px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_undo,.wp_themeSkin .mceButtonActive span.mce_undo{background-position:-500px 0}.wp_themeSkin span.mce_redo{background-position:-480px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_redo,.wp_themeSkin .mceButtonActive span.mce_redo{background-position:-480px 0}.wp_themeSkin span.mce_bullist{background-position:-40px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_bullist,.wp_themeSkin .mceButtonActive span.mce_bullist,.wp_themeSkin .mceSplitButton:hover span.mce_bullist{background-position:-40px 0}.wp_themeSkin span.mce_numlist{background-position:-61px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_numlist,.wp_themeSkin .mceButtonActive span.mce_numlist,.wp_themeSkin .mceSplitButton:hover span.mce_numlist{background-position:-61px 0}.wp_themeSkin span.mce_blockquote{background-position:-80px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_blockquote,.wp_themeSkin .mceButtonActive span.mce_blockquote{background-position:-80px 0}.wp_themeSkin span.mce_charmap{background-position:-420px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_charmap,.wp_themeSkin .mceButtonActive span.mce_charmap{background-position:-420px 0}.wp_themeSkin span.mce_bold{background-position:-1px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_bold,.wp_themeSkin .mceButtonActive span.mce_bold{background-position:-1px 0}.wp_themeSkin span.mce_italic{background-position:-21px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_italic,.wp_themeSkin .mceButtonActive span.mce_italic{background-position:-21px 0}.wp_themeSkin span.mce_underline{background-position:-280px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_underline,.wp_themeSkin .mceButtonActive span.mce_underline{background-position:-280px 1px}.wp_themeSkin span.mce_justifyleft{background-position:-100px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_justifyleft,.wp_themeSkin .mceButtonActive span.mce_justifyleft{background-position:-100px 1px}.wp_themeSkin span.mce_justifyright{background-position:-141px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_justifyright,.wp_themeSkin .mceButtonActive span.mce_justifyright{background-position:-141px 1px}.wp_themeSkin span.mce_justifycenter{background-position:-120px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_justifycenter,.wp_themeSkin .mceButtonActive span.mce_justifycenter{background-position:-120px 1px}.wp_themeSkin span.mce_justifyfull{background-position:-300px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_justifyfull,.wp_themeSkin .mceButtonActive span.mce_justifyfull{background-position:-300px 1px}.wp_themeSkin span.mce_indent{background-position:-461px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_indent,.wp_themeSkin .mceButtonActive span.mce_indent{background-position:-461px 1px}.wp_themeSkin span.mce_outdent{background-position:-440px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_outdent,.wp_themeSkin .mceButtonActive span.mce_outdent{background-position:-440px 1px}.wp_themeSkin span.mce_link{background-position:-161px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_link,.wp_themeSkin .mceButtonActive span.mce_link{background-position:-161px 0}.wp_themeSkin span.mce_unlink{background-position:-180px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_unlink,.wp_themeSkin .mceButtonActive span.mce_unlink{background-position:-180px 0}.wp_themeSkin span.mce_help{background-position:-521px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_help,.wp_themeSkin .mceButtonActive span.mce_help{background-position:-521px 0}.wp_themeSkin span.mce_removeformat{background-position:-381px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_removeformat,.wp_themeSkin .mceButtonActive span.mce_removeformat{background-position:-381px 0}.wp_themeSkin span.mce_strikethrough{background-position:-540px -18px}.wp_themeSkin .mceButtonEnabled:hover span.mce_strikethrough,.wp_themeSkin .mceButtonActive span.mce_strikethrough{background-position:-540px 0}.wp_themeSkin .mceSplitButton .mce_forecolor span.mce_forecolor{background-position:-321px -22px}.wp_themeSkin .mceSplitButtonEnabled:hover span.mce_forecolor,.wp_themeSkin .mceSplitButtonActive span.mce_forecolor{background-position:-321px -2px}.wp_themeSkin .mce_forecolorpicker{background-position:-320px -20px}.wp_themeSkin span.mce_fullscreen{background-position:-240px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_fullscreen,.wp_themeSkin .mceButtonActive span.mce_fullscreen{background-position:-240px 0}.wp_themeSkin span.mce_wp_fullscreen{background-position:-240px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_wp_fullscreen,.wp_themeSkin .mceButtonActive span.mce_wp_fullscreen{background-position:-240px 0}.wp_themeSkin span.mce_media{background-position:-401px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_media,.wp_themeSkin .mceButtonActive span.mce_media{background-position:-401px 0}.wp_themeSkin span.mce_pastetext{background-position:-340px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_pastetext,.wp_themeSkin .mceButtonActive span.mce_pastetext{background-position:-340px 0}.wp_themeSkin span.mce_pasteword{background-position:-360px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_pasteword,.wp_themeSkin .mceButtonActive span.mce_pasteword{background-position:-360px 0}.wp_themeSkin span.mce_spellchecker{background-position:-220px -19px}.wp_themeSkin .mceButtonEnabled:hover span.mce_spellchecker,.wp_themeSkin .mceSplitButtonEnabled:hover span.mce_spellchecker,.wp_themeSkin .mceButtonActive span.mce_spellchecker,.wp_themeSkin .mceSplitButtonActive span.mce_spellchecker{background-position:-220px 1px}.wp_themeSkin span.mce_wp_help{background-position:-521px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_wp_help,.wp_themeSkin .mceButtonActive span.mce_wp_help{background-position:-521px 0}.wp_themeSkin span.mce_wp_adv{background-position:-260px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_wp_adv,.wp_themeSkin .mceButtonActive span.mce_wp_adv{background-position:-260px 0}.wp_themeSkin span.mce_wp_more{background-position:-201px -20px}.wp_themeSkin .mceButtonEnabled:hover span.mce_wp_more,.wp_themeSkin .mceButtonActive span.mce_wp_more{background-position:-201px 0}.wp_themeSkin span.mce_cleanup{background-position:-380px -20px}.wp_themeSkin span.mce_anchor{background-position:-200px 0}.wp_themeSkin span.mce_sub{background-position:-600px 0}.wp_themeSkin span.mce_sup{background-position:-620px 0}.wp_themeSkin span.mce_newdocument{background-position:-520px 0}.wp_themeSkin span.mce_image{background-position:-380px 0}.wp_themeSkin span.mce_code{background-position:-260px 0}.wp_themeSkin span.mce_hr{background-position:-360px 0}.wp_themeSkin span.mce_visualaid{background-position:-660px 0}.wp_themeSkin span.mce_paste{background-position:-560px 0}.wp_themeSkin span.mce_copy{background-position:-700px 0}.wp_themeSkin span.mce_cut{background-position:-680px 0}.wp_themeSkin .mce_backcolor span.mceAction{background-position:-760px 0}.wp_themeSkin .mce_backcolorpicker{background-position:-760px 0}.wp_themeSkin span.mce_advhr{background-position:-0px -20px}.wp_themeSkin span.mce_ltr{background-position:-20px -20px}.wp_themeSkin span.mce_rtl{background-position:-40px -20px}.wp_themeSkin span.mce_emotions{background-position:-60px -20px}.wp_themeSkin span.mce_fullpage{background-position:-80px -20px}.wp_themeSkin span.mce_iespell{background-position:-120px -20px}.wp_themeSkin span.mce_insertdate{background-position:-140px -20px}.wp_themeSkin span.mce_inserttime{background-position:-160px -20px}.wp_themeSkin span.mce_absolute{background-position:-180px -20px}.wp_themeSkin span.mce_backward{background-position:-200px -20px}.wp_themeSkin span.mce_forward{background-position:-220px -20px}.wp_themeSkin span.mce_insert_layer{background-position:-240px -20px}.wp_themeSkin span.mce_insertlayer{background-position:-260px -20px}.wp_themeSkin span.mce_movebackward{background-position:-280px -20px}.wp_themeSkin span.mce_moveforward{background-position:-300px -20px}.wp_themeSkin span.mce_nonbreaking{background-position:-340px -20px}.wp_themeSkin span.mce_selectall{background-position:-400px -20px}.wp_themeSkin span.mce_preview{background-position:-420px -20px}.wp_themeSkin span.mce_print{background-position:-440px -20px}.wp_themeSkin span.mce_cancel{background-position:-460px -20px}.wp_themeSkin span.mce_save{background-position:-480px -20px}.wp_themeSkin span.mce_replace{background-position:-500px -20px}.wp_themeSkin span.mce_search{background-position:-520px -20px}.wp_themeSkin span.mce_styleprops{background-position:-560px -20px}.wp_themeSkin span.mce_table{background-position:-580px -20px}.wp_themeSkin span.mce_cell_props{background-position:-600px -20px}.wp_themeSkin span.mce_delete_table{background-position:-620px -20px}.wp_themeSkin span.mce_delete_col{background-position:-640px -20px}.wp_themeSkin span.mce_delete_row{background-position:-660px -20px}.wp_themeSkin span.mce_col_after{background-position:-680px -20px}.wp_themeSkin span.mce_col_before{background-position:-700px -20px}.wp_themeSkin span.mce_row_after{background-position:-720px -20px}.wp_themeSkin span.mce_row_before{background-position:-740px -20px}.wp_themeSkin span.mce_merge_cells{background-position:-760px -20px}.wp_themeSkin span.mce_table_props{background-position:-980px -20px}.wp_themeSkin span.mce_row_props{background-position:-780px -20px}.wp_themeSkin span.mce_split_cells{background-position:-800px -20px}.wp_themeSkin span.mce_template{background-position:-820px -20px}.wp_themeSkin span.mce_visualchars{background-position:-840px -20px}.wp_themeSkin span.mce_abbr{background-position:-860px -20px}.wp_themeSkin span.mce_acronym{background-position:-880px -20px}.wp_themeSkin span.mce_attribs{background-position:-900px -20px}.wp_themeSkin span.mce_cite{background-position:-920px -20px}.wp_themeSkin span.mce_del{background-position:-940px -20px}.wp_themeSkin span.mce_ins{background-position:-960px -20px}.wp_themeSkin span.mce_pagebreak{background-position:0 -40px}.wp_themeSkin .mceExternalToolbar,.wp_themeSkin .mceButton,.wp_themeSkin a.mceButtonEnabled:hover,.wp_themeSkin a.mceButtonActive,.wp_themeSkin a.mceButtonSelected,.wp_themeSkin .mceListBox .mceText,.wp_themeSkin .mceListBox .mceOpen,.wp_themeSkin table.mceListBoxEnabled:hover .mceText,.wp_themeSkin .mceListBoxHover .mceText,.wp_themeSkin .mceListBoxSelected .mceText,.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,.wp_themeSkin .mceListBoxHover .mceOpen,.wp_themeSkin .mceListBoxSelected .mceOpen,.wp_themeSkin select.mceListBox,.wp_themeSkin .mceSplitButton a.mceAction,.wp_themeSkin .mceSplitButton a.mceOpen,.wp_themeSkin .mceSplitButton a.mceOpen:hover,.wp_themeSkin .mceSplitButtonSelected a.mceOpen,.wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,.wp_themeSkin .mceSplitButton a.mceAction:hover,.wp_themeSkin div.mceColorSplitMenu table,.wp_themeSkin .mceColorSplitMenu a,.wp_themeSkin .mceColorSplitMenu a.mceMoreColors,.wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover,.wp_themeSkin a.mceMoreColors:hover,.wp_themeSkin .mceMenu{border-style:solid;border-width:1px}.wp_themeSkin iframe{background:transparent}.wp_themeSkin .mceButton,.wp_themeSkin .mceListBox .mceText,.wp_themeSkin .mceListBox .mceOpen{border-color:#ccc;background-color:#eee;background-image:-ms-linear-gradient(bottom,#ddd,#fff);background-image:-moz-linear-gradient(bottom,#ddd,#fff);background-image:-o-linear-gradient(bottom,#ddd,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ddd),to(#fff));background-image:-webkit-linear-gradient(bottom,#ddd,#fff);background-image:linear-gradient(bottom,#ddd,#fff)}.wp_themeSkin a.mceButtonEnabled:hover{border-color:#a0a0a0;background:#ddd;background-image:-ms-linear-gradient(bottom,#ccc,#fff);background-image:-moz-linear-gradient(bottom,#ccc,#fff);background-image:-o-linear-gradient(bottom,#ccc,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ccc),to(#fff));background-image:-webkit-linear-gradient(bottom,#ccc,#fff);background-image:linear-gradient(bottom,#ccc,#fff)}.wp_themeSkin a.mceButton:active,.wp_themeSkin a.mceButtonEnabled:active,.wp_themeSkin a.mceButtonSelected:active,.wp_themeSkin a.mceButtonActive,.wp_themeSkin a.mceButtonActive:active,.wp_themeSkin a.mceButtonActive:hover{background-color:#ddd;background-image:-ms-linear-gradient(bottom,#eee,#bbb);background-image:-moz-linear-gradient(bottom,#eee,#bbb);background-image:-o-linear-gradient(bottom,#eee,#bbb);background-image:-webkit-gradient(linear,left bottom,left top,from(#eee),to(#bbb));background-image:-webkit-linear-gradient(bottom,#eee,#bbb);background-image:linear-gradient(bottom,#eee,#bbb);border-color:#909090}.wp_themeSkin .mceButtonDisabled{border-color:#ccc!important}.wp_themeSkin .mceListBox .mceOpen{border-left:0!important}.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,.wp_themeSkin .mceListBoxHover .mceOpen,.wp_themeSkin .mceListBoxHover:active .mceOpen,.wp_themeSkin .mceListBoxSelected .mceOpen,.wp_themeSkin .mceListBoxSelected .mceText,.wp_themeSkin table.mceListBoxEnabled:active .mceText{background:#ccc;border-color:#999}.wp_themeSkin table.mceListBoxEnabled:hover .mceText,.wp_themeSkin .mceListBoxHover .mceText,.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,.wp_themeSkin .mceListBoxHover .mceOpen{border-color:#909090;background-color:#eee;background-image:-ms-linear-gradient(bottom,#ccc,#fff);background-image:-moz-linear-gradient(bottom,#ccc,#fff);background-image:-o-linear-gradient(bottom,#ccc,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ccc),to(#fff));background-image:-webkit-linear-gradient(bottom,#ccc,#fff);background-image:linear-gradient(bottom,#ccc,#fff)}.wp_themeSkin .mceSplitButton a.mceAction,.wp_themeSkin .mceSplitButton a.mceOpen{border-color:#ccc}.wp_themeSkin .mceSplitButton a.mceOpen:hover,.wp_themeSkin .mceSplitButtonSelected a.mceOpen,.wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,.wp_themeSkin .mceSplitButton a.mceAction:hover{border-color:#909090}.wp_themeSkin table.mceSplitButton td{background-color:#eee;background-image:-ms-linear-gradient(bottom,#ddd,#fff);background-image:-moz-linear-gradient(bottom,#ddd,#fff);background-image:-o-linear-gradient(bottom,#ddd,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ddd),to(#fff));background-image:-webkit-linear-gradient(bottom,#ddd,#fff);background-image:linear-gradient(bottom,#ddd,#fff)}.wp_themeSkin table.mceSplitButton:hover td{background-image:-ms-linear-gradient(bottom,#ccc,#fff);background-image:-moz-linear-gradient(bottom,#ccc,#fff);background-image:-o-linear-gradient(bottom,#ccc,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#ccc),to(#fff));background-image:-webkit-linear-gradient(bottom,#ccc,#fff);background-image:linear-gradient(bottom,#ccc,#fff)}.wp_themeSkin .mceSplitButtonActive{background-color:#b2b2b2}.wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover{border-color:#0a246a;background-color:#b6bdd2}.wp_themeSkin a.mceMoreColors:hover{border-color:#0a246a}.wp_themeSkin .mceMenuItemDisabled .mceText{color:#888}#mceModalBlocker{background:#000}.wp-editor-area{font-family:Consolas,Monaco,monospace;padding:10px;line-height:150%;border:0 none;outline:0;resize:vertical;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.wp-editor-tools{height:30px;padding:0 10px}.wp-editor-container{border-width:1px;border-style:solid;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px;border-color:#ccc #ccc #dfdfdf}.wp-editor-container textarea.wp-editor-area{width:99.9%}.quicktags-toolbar,.wp_themeSkin tr.mceFirst td.mceToolbar{border-bottom:1px solid #ccc;background-color:#e9e9e9;background-image:-ms-linear-gradient(bottom,#ddd,#e9e9e9);background-image:-moz-linear-gradient(bottom,#ddd,#e9e9e9);background-image:-o-linear-gradient(bottom,#ddd,#e9e9e9);background-image:-webkit-linear-gradient(bottom,#ddd,#e9e9e9);background-image:linear-gradient(bottom,#ddd,#e9e9e9)}.wp-switch-editor{height:18px;font:13px/18px Arial,Helvetica,sans-serif normal;margin:5px 5px 0 0;padding:4px 5px 2px;float:right;cursor:pointer;border-width:1px;border-style:solid;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px;background-color:#f1f1f1;border-color:#dfdfdf #dfdfdf #ccc;color:#999}html[dir="rtl"] .wp-switch-editor{float:left}.wp-switch-editor:hover{text-decoration:none!important}.js .tmce-active .wp-editor-area{color:white}.tmce-active .quicktags-toolbar{display:none}.tmce-active .switch-tmce,.html-active .switch-html{border-color:#ccc #ccc #e9e9e9;background-color:#e9e9e9;color:#333}.wp-media-buttons{line-height:1;padding:9px 0 0}.wp-media-buttons a{text-decoration:none;color:#333;font-size:12px;vertical-align:bottom}.wp-media-buttons img{padding:0 4px;vertical-align:middle}.quicktags-toolbar{border-bottom-style:solid;border-bottom-width:1px;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px;padding:2px 8px 0;min-height:29px}.quicktags-toolbar>div{padding:2px 4px 0}.quicktags-toolbar input{margin:2px 1px 4px;line-height:18px;display:inline-block;min-width:26px;padding:2px 4px;font:12px/18px Arial,Helvetica,sans-serif normal;color:#464646;border:1px solid #c3c3c3;-webkit-border-radius:3px;border-radius:3px;background-color:#eee;background-image:-ms-linear-gradient(bottom,#e3e3e3,#fff);background-image:-moz-linear-gradient(bottom,#e3e3e3,#fff);background-image:-o-linear-gradient(bottom,#e3e3e3,#fff);background-image:-webkit-linear-gradient(bottom,#e3e3e3,#fff);background-image:linear-gradient(bottom,#e3e3e3,#fff)}.quicktags-toolbar input:hover{border-color:#aaa;background:#ddd}.quicktags-toolbar input[value="link"]{text-decoration:underline}.quicktags-toolbar input[value="del"]{text-decoration:line-through}.quicktags-toolbar input[value="i"]{font-style:italic}.quicktags-toolbar input[value="b"]{font-weight:bold}#wp_editbtns,#wp_gallerybtns{padding:2px;position:absolute;display:none;z-index:999998}#wp_editimgbtn,#wp_delimgbtn,#wp_editgallery,#wp_delgallery{border-color:#999;background-color:#eee;margin:2px;padding:2px;border-width:1px;border-style:solid;-webkit-border-radius:3px;border-radius:3px}#wp_editimgbtn:hover,#wp_delimgbtn:hover,#wp_editgallery:hover,#wp_delgallery:hover{border-color:#555;background-color:#ccc}#wp-link{background-color:#f5f5f5;line-height:1.4em;font-size:12px}#wp-link ol,#wp-link ul{list-style:none;margin:0;padding:0}#wp-link input[type="text"]{-webkit-box-sizing:border-box}#wp-link input[type="text"],#wp-link textarea{border-width:1px;border-style:solid;-webkit-border-radius:4px;border-radius:4px;font-size:12px;margin:1px;padding:3px}#wp-link #link-options{padding:10px 0 14px;border-bottom:1px solid #dfdfdf;margin:0 6px 14px}#wp-link p.howto{margin:3px}#wp-link #internal-toggle{display:inline-block;cursor:pointer;padding-left:18px}#wp-link .toggle-arrow{background:transparent url('../images/toggle-arrow.png') top left no-repeat;height:23px;line-height:23px}#wp-link .toggle-arrow-active{background-position:center left}#wp-link label input[type="text"]{width:360px;margin-top:5px}#wp-link label span{display:inline-block;width:80px;text-align:right;padding-right:5px}#wp-link .link-search-wrapper{margin:5px 6px 9px;display:block;overflow:hidden}#wp-link .link-search-wrapper span{float:left;margin-top:9px}#wp-link .link-search-wrapper input[type="text"]{float:left;width:220px}#wp-link .link-search-wrapper img.waiting{margin:8px 1px 0 4px;float:left;display:none}#wp-link .link-target{width:auto;padding:3px 0 0;margin:0 0 0 87px;font-size:11px}#wp-link .query-results{border:1px #dfdfdf solid;margin:0 5px 5px;background:#fff;height:185px;overflow:auto;position:relative}#wp-link li,#wp-link .query-notice{clear:both;margin-bottom:0;border-bottom:1px solid #f1f1f1;color:#333;padding:4px 6px;cursor:pointer;position:relative}#wp-link li:hover{background:#eaf2fa;color:#151515}#wp-link li.unselectable{border-bottom:1px solid #dfdfdf}#wp-link li.unselectable:hover{background:#fff;cursor:auto;color:#333}#wp-link li.selected{background:#ddd;color:#333}#wp-link li.selected .item-title{font-weight:bold}#wp-link .item-title{display:inline-block;width:80%}#wp-link .item-info{text-transform:uppercase;color:#666;font-size:11px;position:absolute;right:5px;top:4px;bottom:0}#wp-link #search-results{display:none}#wp-link #search-panel{float:left;width:100%}#wp-link .river-waiting{display:none;padding:10px 0}#wp-link .river-waiting img.waiting{margin:0 auto;display:block}#wp-link .submitbox{padding:5px 10px;font-size:11px;overflow:auto;height:29px}#wp-link-cancel{line-height:25px;float:left}#wp-link-update{line-height:23px;float:right}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute;left:-99999999px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui-helper-clearfix{display:inline-block}/*\*/* html .ui-helper-clearfix{height:1%}.ui-helper-clearfix{display:block}/**/.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;z-index:99999;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.wp-dialog{position:absolute;width:300px;overflow:hidden}.wp-dialog .ui-dialog-titlebar{position:relative}.wp-dialog .ui-dialog-titlebar-close span{display:block;margin:1px}.wp-dialog .ui-dialog-content{position:relative;border:0;padding:0;background:0;overflow:auto;zoom:1}.wp-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.wp-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.wp-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.wp-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move}.wp-dialog{border:1px solid #999;-moz-box-shadow:0 0 16px rgba(0,0,0,0.3);-webkit-box-shadow:0 0 16px rgba(0,0,0,0.3);box-shadow:0 0 16px rgba(0,0,0,0.3)}.wp-dialog .ui-dialog-title{display:block;text-align:center;padding:1px 0 2px}.wp-dialog .ui-dialog-titlebar{padding:0 1em;background-color:#444;font-weight:bold;font-size:11px;line-height:18px;color:#e5e5e5}.wp-dialog{background-color:#fff;-webkit-border-top-left-radius:4px;-webkit-border-top-right-radius:4px;border-top-left-radius:4px;border-top-right-radius:4px}.wp-dialog .ui-dialog-titlebar{-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.wp-dialog .ui-dialog-titlebar-close{position:absolute;width:29px;height:16px;top:2px;right:6px;background:url('../js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif') no-repeat -87px -16px;padding:0}.wp-dialog .ui-dialog-titlebar-close:hover,.wp-dialog .ui-dialog-titlebar-close:focus{background-position:-87px -32px}.ui-widget-overlay{background-color:#000;opacity:.6;filter:alpha(opacity=60)}.rtl #wp-link #internal-toggle{padding-right:18px;padding-left:0}.rtl #wp-link label span{text-align:left;padding-left:5px;padding-right:0}.rtl #wp-link .link-search-wrapper span{float:right}.rtl #wp-link .link-search-wrapper input[type="text"]{float:right}.rtl #wp-link .link-search-wrapper img.waiting{margin:8px 4px 0 1px;float:right}.rtl #wp-link .link-target{margin:0 87px 0 0}.rtl #wp-link .item-info{left:5px;right:auto;top:4px;bottom:0}.rtl #wp-link #search-panel{float:right}.rtl #wp-link-cancel{float:right}.rtl #wp-link-update{float:left}.rtl #wp-link .toggle-arrow{background-position:top right}.rtl #wp-link .toggle-arrow-active{background-position:center right}.rtl .wp_themeSkin .mceListBox .mceText{text-align:right}.rtl .wp_themeSkin .mceNoIcons a .mceText{padding-right:10px;padding-left:25px}.rtl .mceListBoxMenu.mceNoIcons{margin-left:-14px}.clearlooks2 .mceFocus .mceTop .mceLeft{background:#444;border-left:1px solid #999;border-top:1px solid #999;-webkit-border-top-left-radius:3px;border-top-left-radius:3px}.clearlooks2 .mceFocus .mceTop .mceRight{background:#444;border-right:1px solid #999;border-top:1px solid #999;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.clearlooks2 .mceMiddle .mceLeft{background:#f1f1f1;border-left:1px solid #999}.clearlooks2 .mceMiddle .mceRight{background:#f1f1f1;border-right:1px solid #999}.clearlooks2 .mceBottom{background:#f1f1f1;border-bottom:1px solid #999}.clearlooks2 .mceBottom .mceLeft{background:#f1f1f1;border-bottom:1px solid #999;border-left:1px solid #999}.clearlooks2 .mceBottom .mceCenter{background:#f1f1f1;border-bottom:1px solid #999}.clearlooks2 .mceBottom .mceRight{background:#f1f1f1;border-bottom:1px solid #999;border-right:1px solid #999}.clearlooks2 .mceFocus .mceTop span{color:#e5e5e5}.fullscreen-overlay{z-index:149999;display:none;position:fixed;top:0;bottom:0;left:0;right:0;filter:inherit}.fullscreen-active .fullscreen-overlay,.fullscreen-active #wp-fullscreen-body{display:block}.fullscreen-fader{z-index:200000}.fullscreen-active .fullscreen-fader{display:none}#wp-fullscreen-body{width:100%;z-index:150005;display:none;position:absolute;top:0;left:0;font-size:12px}#wp-fullscreen-wrap{margin:0 auto 50px;position:relative;padding-top:60px}#wp-fullscreen-title{font-size:1.7em;line-height:100%;outline:medium none;padding:6px 7px;width:100%;margin-bottom:30px}#wp-fullscreen-container{padding:4px 10px 50px}#wp-fullscreen-title,#wp-fullscreen-container{-webkit-border-radius:0;border-radius:0;border:1px dashed transparent;background:transparent;-moz-transition-property:border-color;-moz-transition-duration:.6s;-webkit-transition-property:border-color;-webkit-transition-duration:.6s;-o-transition-property:border-color;-o-transition-duration:.6s;transition-property:border-color;transition-duration:.6s}#wp_mce_fullscreen{width:100%;min-height:300px;border:0;background:transparent;font-family:Consolas,Monaco,monospace;line-height:1.6em;padding:0;overflow-y:hidden;outline:0;resize:none}#wp-fullscreen-tagline{color:#bbb;font-size:18px;float:right;padding-top:5px}#fullscreen-topbar{position:fixed;top:0;left:0;z-index:150050;border-bottom-style:solid;border-bottom-width:1px;min-width:800px;width:100%;height:40px}#wp-fullscreen-toolbar{padding:6px 10px 0;clear:both;max-width:1100px;min-width:820px;margin:0 auto}#wp-fullscreen-mode-bar,#wp-fullscreen-button-bar,#wp-fullscreen-close,#wp-fullscreen-count{float:left}#wp-fullscreen-save{float:right;padding:2px 2px 0 5px}#wp-fullscreen-count,#wp-fullscreen-close{padding-top:5px}#wp-fullscreen-central-toolbar{margin:auto;padding:0}#wp-fullscreen-buttons>div{float:left}#wp-fullscreen-mode-bar{padding:1px 14px 0 0}#wp-fullscreen-modes a{display:block;font-size:11px;text-decoration:none;float:left;margin:1px 0 0 0;padding:2px 6px 2px;border-width:1px 1px 1px 0;border-style:solid;border-color:#bbb;color:#777;text-shadow:0 1px 0 #fff;background-color:#f4f4f4;background-image:-moz-linear-gradient(bottom,#e4e4e4,#f9f9f9);background-image:-webkit-gradient(linear,left bottom,left top,from(#e4e4e4),to(#f9f9f9))}#wp-fullscreen-modes a:hover,.wp-html-mode #wp-fullscreen-modes a:last-child,.wp-tmce-mode #wp-fullscreen-modes a:first-child{color:#333;border-color:#999;background-color:#eee;background-image:-moz-linear-gradient(bottom,#f9f9f9,#e0e0e0);background-image:-webkit-gradient(linear,left bottom,left top,from(#f9f9f9),to(#e0e0e0))}#wp-fullscreen-modes a:first-child{border-width:1px;-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:3px}#wp-fullscreen-modes a:last-child{-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px}#wp-fullscreen-buttons .active a{background:inherit}#wp-fullscreen-buttons .hidden{display:none}#wp-fullscreen-buttons .disabled{opacity:.5}.wp-html-mode #wp-fullscreen-buttons div{display:none}.wp-html-mode #wp-fullscreen-buttons div.wp-fullscreen-both{display:block}#fullscreen-topbar.fullscreen-make-sticky{display:block!important}#wp-fullscreen-save img{vertical-align:middle}#wp-fullscreen-save img,#wp-fullscreen-save span{padding-right:4px;display:none}#wp-fullscreen-buttons .mce_image .mce_image{background-image:url('../../wp-admin/images/media-button.png?ver=20120201');background-position:3px 3px}.fullscreen-active #TB_overlay{z-index:150100}.fullscreen-active #TB_window{z-index:150102}#wp_mce_fullscreen_ifr{background:transparent}#wp_mce_fullscreen_parent #wp_mce_fullscreen_tbl tr.mceFirst{display:none}#wp-fullscreen-container .wp_themeSkin table td{vertical-align:top}.fullscreen-overlay{background:#fff}.wp-fullscreen-focus #wp-fullscreen-title,.wp-fullscreen-focus #wp-fullscreen-container{border-color:#ccc}#fullscreen-topbar{border-bottom-color:#dfdfdf;background-color:#f1f1f1;background-image:-ms-linear-gradient(top,#f9f9f9,#ececec);background-image:-moz-linear-gradient(top,#f9f9f9,#ececec);background-image:-o-linear-gradient(top,#f9f9f9,#ececec);background-image:-webkit-gradient(linear,left top,left bottom,from(#f9f9f9),to(#ececec));background-image:-webkit-linear-gradient(top,#f9f9f9,#ececec);background-image:linear-gradient(top,#f9f9f9,#ececec)}.fade-1000,.fade-600,.fade-400,.fade-300{opacity:0;-moz-transition-property:opacity;-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.fade-1000{-moz-transition-duration:1s;-webkit-transition-duration:1s;-o-transition-duration:1s;transition-duration:1s}.fade-600{-moz-transition-duration:.6s;-webkit-transition-duration:.6s;-o-transition-duration:.6s;transition-duration:.6s}.fade-400{-moz-transition-duration:.4s;-webkit-transition-duration:.4s;-o-transition-duration:.4s;transition-duration:.4s}.fade-300{-moz-transition-duration:.3s;-webkit-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.fade-trigger{opacity:1}.rtl #wp-fullscreen-tagline{float:left}.rtl #fullscreen-topbar{left:auto;right:0}.rtl #wp-fullscreen-mode-bar,.rtl #wp-fullscreen-button-bar,.rtl #wp-fullscreen-close,.rtl #wp-fullscreen-count{float:right}.rtl #wp-fullscreen-save{float:left}.rtl #wp-fullscreen-save{padding:2px 5px 0 2px}.rtl #wp-fullscreen-buttons>div{float:right}.rtl #wp-fullscreen-mode-bar{padding:1px 0 0 14px}.rtl #wp-fullscreen-modes a{float:right;border-width:1px 0 1px 1px}.rtl #wp-fullscreen-modes a:first-child{-webkit-border-top-left-radius:0;-webkit-border-top-right-radius:3px;-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:3px;border-width:1px;border-top-left-radius:0;border-top-right-radius:3px;border-bottom-right-left:0;border-bottom-right-radius:3px}.rtl #wp-fullscreen-modes a:last-child{-webkit-border-top-right-radius:0;-webkit-border-top-left-radius:3px;-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:3px;border-top-right-radius:0;border-top-left-radius:3px;border-bottom-right-radius:0;border-bottom-left-radius:3px}.rtl #wp-fullscreen-save img,.rtl #wp-fullscreen-save span{padding-right:0;padding-left:4px}
\ No newline at end of file
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/css/editor.dev.css ./wordpress-3.4.2/wp-includes/css/editor.dev.css
*** ./wordpress-3.4.1/wp-includes/css/editor.dev.css 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/css/editor.dev.css 2012-07-23 17:38:52.000000000 -0500
***************
*** 1237,1243 ****
#wp-link .link-search-wrapper span {
float: left;
! margin-top: 6px;
}
#wp-link .link-search-wrapper input[type="text"] {
--- 1237,1243 ----
#wp-link .link-search-wrapper span {
float: left;
! margin-top: 9px;
}
#wp-link .link-search-wrapper input[type="text"] {
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/formatting.php ./wordpress-3.4.2/wp-includes/formatting.php
*** ./wordpress-3.4.1/wp-includes/formatting.php 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/formatting.php 2012-09-03 22:37:29.000000000 -0500
***************
*** 3236,3242 ****
* @return string URLs starting with the http or https protocol, separated by a carriage return.
*/
function sanitize_trackback_urls( $to_ping ) {
! $urls_to_ping = preg_split( '/\r\n\t /', trim( $to_ping ), -1, PREG_SPLIT_NO_EMPTY );
foreach ( $urls_to_ping as $k => $url ) {
if ( !preg_match( '#^https?://.#i', $url ) )
unset( $urls_to_ping[$k] );
--- 3236,3242 ----
* @return string URLs starting with the http or https protocol, separated by a carriage return.
*/
function sanitize_trackback_urls( $to_ping ) {
! $urls_to_ping = preg_split( '/[\r\n\t ]/', trim( $to_ping ), -1, PREG_SPLIT_NO_EMPTY );
foreach ( $urls_to_ping as $k => $url ) {
if ( !preg_match( '#^https?://.#i', $url ) )
unset( $urls_to_ping[$k] );
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/functions.php ./wordpress-3.4.2/wp-includes/functions.php
*** ./wordpress-3.4.1/wp-includes/functions.php 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/functions.php 2012-09-04 20:08:23.000000000 -0500
***************
*** 1486,1492 ****
// Make sure we have an uploads dir
if ( ! wp_mkdir_p( $uploads['path'] ) ) {
! $message = sprintf( __( 'Unable to create directory %s. Is its parent directory writable by the server?' ), $uploads['path'] );
return array( 'error' => $message );
}
--- 1486,1497 ----
// Make sure we have an uploads dir
if ( ! wp_mkdir_p( $uploads['path'] ) ) {
! if ( 0 === strpos( $uploads['basedir'], ABSPATH ) )
! $error_path = str_replace( ABSPATH, '', $uploads['basedir'] ) . $uploads['subdir'];
! else
! $error_path = basename( $uploads['basedir'] ) . $uploads['subdir'];
!
! $message = sprintf( __( 'Unable to create directory %s. Is its parent directory writable by the server?' ), $error_path );
return array( 'error' => $message );
}
***************
*** 1604,1610 ****
$new_file = $upload['path'] . "/$filename";
if ( ! wp_mkdir_p( dirname( $new_file ) ) ) {
! $message = sprintf( __( 'Unable to create directory %s. Is its parent directory writable by the server?' ), dirname( $new_file ) );
return array( 'error' => $message );
}
--- 1609,1620 ----
$new_file = $upload['path'] . "/$filename";
if ( ! wp_mkdir_p( dirname( $new_file ) ) ) {
! if ( 0 === strpos( $upload['basedir'], ABSPATH ) )
! $error_path = str_replace( ABSPATH, '', $upload['basedir'] ) . $upload['subdir'];
! else
! $error_path = basename( $upload['basedir'] ) . $upload['subdir'];
!
! $message = sprintf( __( 'Unable to create directory %s. Is its parent directory writable by the server?' ), $error_path );
return array( 'error' => $message );
}
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/js/imgareaselect/jquery.imgareaselect.dev.js ./wordpress-3.4.2/wp-includes/js/imgareaselect/jquery.imgareaselect.dev.js
*** ./wordpress-3.4.1/wp-includes/js/imgareaselect/jquery.imgareaselect.dev.js 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/js/imgareaselect/jquery.imgareaselect.dev.js 2012-07-25 17:42:05.000000000 -0500
***************
*** 1,6 ****
/*
* imgAreaSelect jQuery plugin
! * version 0.9.8
*
* Copyright (c) 2008-2011 Michal Wojciechowski (odyniec.net)
*
--- 1,6 ----
/*
* imgAreaSelect jQuery plugin
! * version 0.9.9
*
* Copyright (c) 2008-2011 Michal Wojciechowski (odyniec.net)
*
***************
*** 706,712 ****
setSelection(selX(x1), selY(y1), selX(x1), selY(y1));
/* If this is an API call, callback functions should not be triggered */
! if (!this instanceof $.imgAreaSelect) {
options.onSelectChange(img, getSelection());
options.onSelectEnd(img, getSelection());
}
--- 706,712 ----
setSelection(selX(x1), selY(y1), selX(x1), selY(y1));
/* If this is an API call, callback functions should not be triggered */
! if (!(this instanceof $.imgAreaSelect)) {
options.onSelectChange(img, getSelection());
options.onSelectEnd(img, getSelection());
}
***************
*** 866,872 ****
* properties
*/
function styleOptions($elem, props) {
! for (option in props)
if (options[option] !== undefined)
$elem.css(props[option], options[option]);
}
--- 866,872 ----
* properties
*/
function styleOptions($elem, props) {
! for (var option in props)
if (options[option] !== undefined)
$elem.css(props[option], options[option]);
}
***************
*** 1143,1149 ****
* attribute seems to trigger it. The check is for version 7 and above to
* accommodate for MSIE 9 running in compatibility mode.
*/
! if ($.browser.msie && $.browser.version >= 7)
img.src = img.src;
};
--- 1143,1149 ----
* attribute seems to trigger it. The check is for version 7 and above to
* accommodate for MSIE 9 running in compatibility mode.
*/
! if (!imgLoaded && $.browser.msie && $.browser.version >= 7)
img.src = img.src;
};
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/js/imgareaselect/jquery.imgareaselect.js ./wordpress-3.4.2/wp-includes/js/imgareaselect/jquery.imgareaselect.js
*** ./wordpress-3.4.1/wp-includes/js/imgareaselect/jquery.imgareaselect.js 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/js/imgareaselect/jquery.imgareaselect.js 2012-09-04 20:55:55.000000000 -0500
***************
*** 1 ****
! (function(e){var b=Math.abs,a=Math.max,d=Math.min,c=Math.round;function f(){return e("
")}e.imgAreaSelect=function(s,X){var az=e(s),Z,av=f(),ai=f(),K=f().add(f()).add(f()).add(f()),ab=f().add(f()).add(f()).add(f()),O=e([]),V,n,q,aC={left:0,top:0},Q,j,C,P={left:0,top:0},D=0,ag="absolute",T,S,ad,ac,L,E,U,W,am,Y,N,A,aD,z,aB,y={x1:0,y1:0,x2:0,y2:0,width:0,height:0},p=document.documentElement,l,au,ap,aj,af,aq,x;function J(h){return h+aC.left-P.left}function I(h){return h+aC.top-P.top}function H(h){return h-aC.left+P.left}function B(h){return h-aC.top+P.top}function ao(h){return h.pageX-P.left}function al(h){return h.pageY-P.top}function G(h){var o=h||ad,i=h||ac;return{x1:c(y.x1*o),y1:c(y.y1*i),x2:c(y.x2*o),y2:c(y.y2*i),width:c(y.x2*o)-c(y.x1*o),height:c(y.y2*i)-c(y.y1*i)}}function ah(i,w,h,o,aE){var aG=aE||ad,aF=aE||ac;y={x1:c(i/aG||0),y1:c(w/aF||0),x2:c(h/aG||0),y2:c(o/aF||0)};y.width=y.x2-y.x1;y.height=y.y2-y.y1}function ar(){if(!az.width()){return}aC={left:c(az.offset().left),top:c(az.offset().top)};Q=az.innerWidth();j=az.innerHeight();aC.top+=(az.outerHeight()-j)>>1;aC.left+=(az.outerWidth()-Q)>>1;E=c(X.minWidth/ad)||0;U=c(X.minHeight/ac)||0;W=c(d(X.maxWidth/ad||1<<24,Q));am=c(d(X.maxHeight/ac||1<<24,j));if(e().jquery=="1.3.2"&&ag=="fixed"&&!p.getBoundingClientRect){aC.top+=a(document.body.scrollTop,p.scrollTop);aC.left+=a(document.body.scrollLeft,p.scrollLeft)}P=/absolute|relative/.test(C.css("position"))?{left:c(C.offset().left)-C.scrollLeft(),top:c(C.offset().top)-C.scrollTop()}:ag=="fixed"?{left:e(document).scrollLeft(),top:e(document).scrollTop()}:{left:0,top:0};n=J(0);q=I(0);if(y.x2>Q||y.y2>j){ay()}}function aa(h){if(!N){return}av.css({left:J(y.x1),top:I(y.y1)}).add(ai).width(af=y.width).height(aq=y.height);ai.add(K).add(O).css({left:0,top:0});K.width(a(af-K.outerWidth()+K.innerWidth(),0)).height(a(aq-K.outerHeight()+K.innerHeight(),0));e(ab[0]).css({left:n,top:q,width:y.x1,height:j});e(ab[1]).css({left:n+y.x1,top:q,width:af,height:y.y1});e(ab[2]).css({left:n+y.x2,top:q,width:Q-y.x2,height:j});e(ab[3]).css({left:n+y.x1,top:q+y.y2,width:af,height:j-y.y2});af-=O.outerWidth();aq-=O.outerHeight();switch(O.length){case 8:e(O[4]).css({left:af>>1});e(O[5]).css({left:af,top:aq>>1});e(O[6]).css({left:af>>1,top:aq});e(O[7]).css({top:aq>>1});case 4:O.slice(1,3).css({left:af});O.slice(2,4).css({top:aq})}if(h!==false){if(e.imgAreaSelect.keyPress!=aw){e(document).unbind(e.imgAreaSelect.keyPress,e.imgAreaSelect.onKeyPress)}if(X.keys){e(document)[e.imgAreaSelect.keyPress](e.imgAreaSelect.onKeyPress=aw)}}if(e.browser.msie&&K.outerWidth()-K.innerWidth()==2){K.css("margin",0);setTimeout(function(){K.css("margin","auto")},0)}}function u(h){ar();aa(h);A=J(y.x1);aD=I(y.y1);z=J(y.x2);aB=I(y.y2)}function ak(h,i){X.fadeSpeed?h.fadeOut(X.fadeSpeed,i):h.hide()}function F(i){var h=H(ao(i))-y.x1,o=B(al(i))-y.y1;if(!x){ar();x=true;av.one("mouseout",function(){x=false})}L="";if(X.resizable){if(o<=X.resizeMargin){L="n"}else{if(o>=y.height-X.resizeMargin){L="s"}}if(h<=X.resizeMargin){L+="w"}else{if(h>=y.width-X.resizeMargin){L+="e"}}}av.css("cursor",L?L+"-resize":X.movable?"move":"");if(V){V.toggle()}}function an(h){e("body").css("cursor","");if(X.autoHide||y.width*y.height==0){ak(av.add(ab),function(){e(this).hide()})}e(document).unbind("mousemove",ae);av.mousemove(F);X.onSelectEnd(s,G())}function t(h){if(h.which!=1){return false}ar();if(L){e("body").css("cursor",L+"-resize");A=J(y[/w/.test(L)?"x2":"x1"]);aD=I(y[/n/.test(L)?"y2":"y1"]);e(document).mousemove(ae).one("mouseup",an);av.unbind("mousemove",F)}else{if(X.movable){T=n+y.x1-ao(h);S=q+y.y1-al(h);av.unbind("mousemove",F);e(document).mousemove(g).one("mouseup",function(){X.onSelectEnd(s,G());e(document).unbind("mousemove",g);av.mousemove(F)})}else{az.mousedown(h)}}return false}function r(h){if(Y){if(h){z=a(n,d(n+Q,A+b(aB-aD)*Y*(z>A||-1)));aB=c(a(q,d(q+j,aD+b(z-A)/Y*(aB>aD||-1))));z=c(z)}else{aB=a(q,d(q+j,aD+b(z-A)/Y*(aB>aD||-1)));z=c(a(n,d(n+Q,A+b(aB-aD)*Y*(z>A||-1))));aB=c(aB)}}}function ay(){A=d(A,n+Q);aD=d(aD,q+j);if(b(z-A)n+Q){A=n+Q-E}}}if(b(aB-aD)q+j){aD=q+j-U}}}z=a(n,d(z,n+Q));aB=a(q,d(aB,q+j));r(b(z-A)W){z=A-W*(zam){aB=aD-am*(aB=0){O.width(5).height(5)}if(aj=X.borderWidth){O.css({borderWidth:aj,borderStyle:"solid"})}k(O,{borderColor1:"border-color",borderColor2:"background-color",borderOpacity:"opacity"})}ad=X.imageWidth/Q||1;ac=X.imageHeight/j||1;if(h.x1!=null){ah(h.x1,h.y1,h.x2,h.y2);h.show=!h.hide}if(h.keys){X.keys=e.extend({shift:1,ctrl:"resize"},h.keys)}ab.addClass(X.classPrefix+"-outer");ai.addClass(X.classPrefix+"-selection");for(ap=0;ap++<4;){e(K[ap-1]).addClass(X.classPrefix+"-border"+ap)}k(ai,{selectionColor:"background-color",selectionOpacity:"opacity"});k(K,{borderOpacity:"opacity",borderWidth:"border-width"});k(ab,{outerColor:"background-color",outerOpacity:"opacity"});if(aj=X.borderColor1){e(K[0]).css({borderStyle:"solid",borderColor:aj})}if(aj=X.borderColor2){e(K[1]).css({borderStyle:"dashed",borderColor:aj})}av.append(ai.add(K).add(V).add(O));if(e.browser.msie){if(aj=ab.css("filter").match(/opacity=(\d+)/)){ab.css("opacity",aj[1]/100)}if(aj=K.css("filter").match(/opacity=(\d+)/)){K.css("opacity",aj[1]/100)}}if(h.hide){ak(av.add(ab))}else{if(h.show&&Z){N=true;av.add(ab).fadeIn(X.fadeSpeed||0);u()}}Y=(au=(X.aspectRatio||"").split(/:/))[0]/au[1];az.add(ab).unbind("mousedown",m);if(X.disable||X.enable===false){av.unbind("mousemove",F).unbind("mousedown",t);e(window).unbind("resize",v)}else{if(X.enable||X.disable===false){if(X.resizable||X.movable){av.mousemove(F).mousedown(t)}e(window).resize(v)}if(!X.persistent){az.add(ab).mousedown(m)}}X.enable=X.disable=undefined}this.remove=function(){M({disable:true});av.add(ab).remove()};this.getOptions=function(){return X};this.setOptions=M;this.getSelection=G;this.setSelection=ah;this.cancelSelection=at;this.update=u;l=az;while(l.length){D=a(D,!isNaN(l.css("z-index"))?l.css("z-index"):D);if(l.css("position")=="fixed"){ag="fixed"}l=l.parent(":not(body)")}D=X.zIndex||D;if(e.browser.msie){az.attr("unselectable","on")}e.imgAreaSelect.keyPress=e.browser.msie||e.browser.safari?"keydown":"keypress";if(e.browser.opera){V=f().css({width:"100%",height:"100%",position:"absolute",zIndex:D+2||2})}av.add(ab).css({visibility:"hidden",position:ag,overflow:"hidden",zIndex:D||"0"});av.css({zIndex:D+2||2});ai.add(K).css({position:"absolute",fontSize:0});s.complete||s.readyState=="complete"||!az.is("img")?ax():az.one("load",ax);if(e.browser.msie&&e.browser.version>=7){s.src=s.src}};e.fn.imgAreaSelect=function(g){g=g||{};this.each(function(){if(e(this).data("imgAreaSelect")){if(g.remove){e(this).data("imgAreaSelect").remove();e(this).removeData("imgAreaSelect")}else{e(this).data("imgAreaSelect").setOptions(g)}}else{if(!g.remove){if(g.enable===undefined&&g.disable===undefined){g.enable=true}e(this).data("imgAreaSelect",new e.imgAreaSelect(this,g))}}});if(g.instance){return e(this).data("imgAreaSelect")}return this}})(jQuery);
\ No newline at end of file
--- 1 ----
! (function(e){var b=Math.abs,a=Math.max,d=Math.min,c=Math.round;function f(){return e("
")}e.imgAreaSelect=function(s,X){var az=e(s),Z,av=f(),ai=f(),K=f().add(f()).add(f()).add(f()),ab=f().add(f()).add(f()).add(f()),O=e([]),V,n,q,aC={left:0,top:0},Q,j,C,P={left:0,top:0},D=0,ag="absolute",T,S,ad,ac,L,E,U,W,am,Y,N,A,aD,z,aB,y={x1:0,y1:0,x2:0,y2:0,width:0,height:0},p=document.documentElement,l,au,ap,aj,af,aq,x;function J(h){return h+aC.left-P.left}function I(h){return h+aC.top-P.top}function H(h){return h-aC.left+P.left}function B(h){return h-aC.top+P.top}function ao(h){return h.pageX-P.left}function al(h){return h.pageY-P.top}function G(h){var o=h||ad,i=h||ac;return{x1:c(y.x1*o),y1:c(y.y1*i),x2:c(y.x2*o),y2:c(y.y2*i),width:c(y.x2*o)-c(y.x1*o),height:c(y.y2*i)-c(y.y1*i)}}function ah(i,w,h,o,aE){var aG=aE||ad,aF=aE||ac;y={x1:c(i/aG||0),y1:c(w/aF||0),x2:c(h/aG||0),y2:c(o/aF||0)};y.width=y.x2-y.x1;y.height=y.y2-y.y1}function ar(){if(!az.width()){return}aC={left:c(az.offset().left),top:c(az.offset().top)};Q=az.innerWidth();j=az.innerHeight();aC.top+=(az.outerHeight()-j)>>1;aC.left+=(az.outerWidth()-Q)>>1;E=c(X.minWidth/ad)||0;U=c(X.minHeight/ac)||0;W=c(d(X.maxWidth/ad||1<<24,Q));am=c(d(X.maxHeight/ac||1<<24,j));if(e().jquery=="1.3.2"&&ag=="fixed"&&!p.getBoundingClientRect){aC.top+=a(document.body.scrollTop,p.scrollTop);aC.left+=a(document.body.scrollLeft,p.scrollLeft)}P=/absolute|relative/.test(C.css("position"))?{left:c(C.offset().left)-C.scrollLeft(),top:c(C.offset().top)-C.scrollTop()}:ag=="fixed"?{left:e(document).scrollLeft(),top:e(document).scrollTop()}:{left:0,top:0};n=J(0);q=I(0);if(y.x2>Q||y.y2>j){ay()}}function aa(h){if(!N){return}av.css({left:J(y.x1),top:I(y.y1)}).add(ai).width(af=y.width).height(aq=y.height);ai.add(K).add(O).css({left:0,top:0});K.width(a(af-K.outerWidth()+K.innerWidth(),0)).height(a(aq-K.outerHeight()+K.innerHeight(),0));e(ab[0]).css({left:n,top:q,width:y.x1,height:j});e(ab[1]).css({left:n+y.x1,top:q,width:af,height:y.y1});e(ab[2]).css({left:n+y.x2,top:q,width:Q-y.x2,height:j});e(ab[3]).css({left:n+y.x1,top:q+y.y2,width:af,height:j-y.y2});af-=O.outerWidth();aq-=O.outerHeight();switch(O.length){case 8:e(O[4]).css({left:af>>1});e(O[5]).css({left:af,top:aq>>1});e(O[6]).css({left:af>>1,top:aq});e(O[7]).css({top:aq>>1});case 4:O.slice(1,3).css({left:af});O.slice(2,4).css({top:aq})}if(h!==false){if(e.imgAreaSelect.keyPress!=aw){e(document).unbind(e.imgAreaSelect.keyPress,e.imgAreaSelect.onKeyPress)}if(X.keys){e(document)[e.imgAreaSelect.keyPress](e.imgAreaSelect.onKeyPress=aw)}}if(e.browser.msie&&K.outerWidth()-K.innerWidth()==2){K.css("margin",0);setTimeout(function(){K.css("margin","auto")},0)}}function u(h){ar();aa(h);A=J(y.x1);aD=I(y.y1);z=J(y.x2);aB=I(y.y2)}function ak(h,i){X.fadeSpeed?h.fadeOut(X.fadeSpeed,i):h.hide()}function F(i){var h=H(ao(i))-y.x1,o=B(al(i))-y.y1;if(!x){ar();x=true;av.one("mouseout",function(){x=false})}L="";if(X.resizable){if(o<=X.resizeMargin){L="n"}else{if(o>=y.height-X.resizeMargin){L="s"}}if(h<=X.resizeMargin){L+="w"}else{if(h>=y.width-X.resizeMargin){L+="e"}}}av.css("cursor",L?L+"-resize":X.movable?"move":"");if(V){V.toggle()}}function an(h){e("body").css("cursor","");if(X.autoHide||y.width*y.height==0){ak(av.add(ab),function(){e(this).hide()})}e(document).unbind("mousemove",ae);av.mousemove(F);X.onSelectEnd(s,G())}function t(h){if(h.which!=1){return false}ar();if(L){e("body").css("cursor",L+"-resize");A=J(y[/w/.test(L)?"x2":"x1"]);aD=I(y[/n/.test(L)?"y2":"y1"]);e(document).mousemove(ae).one("mouseup",an);av.unbind("mousemove",F)}else{if(X.movable){T=n+y.x1-ao(h);S=q+y.y1-al(h);av.unbind("mousemove",F);e(document).mousemove(g).one("mouseup",function(){X.onSelectEnd(s,G());e(document).unbind("mousemove",g);av.mousemove(F)})}else{az.mousedown(h)}}return false}function r(h){if(Y){if(h){z=a(n,d(n+Q,A+b(aB-aD)*Y*(z>A||-1)));aB=c(a(q,d(q+j,aD+b(z-A)/Y*(aB>aD||-1))));z=c(z)}else{aB=a(q,d(q+j,aD+b(z-A)/Y*(aB>aD||-1)));z=c(a(n,d(n+Q,A+b(aB-aD)*Y*(z>A||-1))));aB=c(aB)}}}function ay(){A=d(A,n+Q);aD=d(aD,q+j);if(b(z-A)n+Q){A=n+Q-E}}}if(b(aB-aD)q+j){aD=q+j-U}}}z=a(n,d(z,n+Q));aB=a(q,d(aB,q+j));r(b(z-A)W){z=A-W*(zam){aB=aD-am*(aB=0){O.width(5).height(5)}if(aj=X.borderWidth){O.css({borderWidth:aj,borderStyle:"solid"})}k(O,{borderColor1:"border-color",borderColor2:"background-color",borderOpacity:"opacity"})}ad=X.imageWidth/Q||1;ac=X.imageHeight/j||1;if(h.x1!=null){ah(h.x1,h.y1,h.x2,h.y2);h.show=!h.hide}if(h.keys){X.keys=e.extend({shift:1,ctrl:"resize"},h.keys)}ab.addClass(X.classPrefix+"-outer");ai.addClass(X.classPrefix+"-selection");for(ap=0;ap++<4;){e(K[ap-1]).addClass(X.classPrefix+"-border"+ap)}k(ai,{selectionColor:"background-color",selectionOpacity:"opacity"});k(K,{borderOpacity:"opacity",borderWidth:"border-width"});k(ab,{outerColor:"background-color",outerOpacity:"opacity"});if(aj=X.borderColor1){e(K[0]).css({borderStyle:"solid",borderColor:aj})}if(aj=X.borderColor2){e(K[1]).css({borderStyle:"dashed",borderColor:aj})}av.append(ai.add(K).add(V).add(O));if(e.browser.msie){if(aj=ab.css("filter").match(/opacity=(\d+)/)){ab.css("opacity",aj[1]/100)}if(aj=K.css("filter").match(/opacity=(\d+)/)){K.css("opacity",aj[1]/100)}}if(h.hide){ak(av.add(ab))}else{if(h.show&&Z){N=true;av.add(ab).fadeIn(X.fadeSpeed||0);u()}}Y=(au=(X.aspectRatio||"").split(/:/))[0]/au[1];az.add(ab).unbind("mousedown",m);if(X.disable||X.enable===false){av.unbind("mousemove",F).unbind("mousedown",t);e(window).unbind("resize",v)}else{if(X.enable||X.disable===false){if(X.resizable||X.movable){av.mousemove(F).mousedown(t)}e(window).resize(v)}if(!X.persistent){az.add(ab).mousedown(m)}}X.enable=X.disable=undefined}this.remove=function(){M({disable:true});av.add(ab).remove()};this.getOptions=function(){return X};this.setOptions=M;this.getSelection=G;this.setSelection=ah;this.cancelSelection=at;this.update=u;l=az;while(l.length){D=a(D,!isNaN(l.css("z-index"))?l.css("z-index"):D);if(l.css("position")=="fixed"){ag="fixed"}l=l.parent(":not(body)")}D=X.zIndex||D;if(e.browser.msie){az.attr("unselectable","on")}e.imgAreaSelect.keyPress=e.browser.msie||e.browser.safari?"keydown":"keypress";if(e.browser.opera){V=f().css({width:"100%",height:"100%",position:"absolute",zIndex:D+2||2})}av.add(ab).css({visibility:"hidden",position:ag,overflow:"hidden",zIndex:D||"0"});av.css({zIndex:D+2||2});ai.add(K).css({position:"absolute",fontSize:0});s.complete||s.readyState=="complete"||!az.is("img")?ax():az.one("load",ax);if(!Z&&e.browser.msie&&e.browser.version>=7){s.src=s.src}};e.fn.imgAreaSelect=function(g){g=g||{};this.each(function(){if(e(this).data("imgAreaSelect")){if(g.remove){e(this).data("imgAreaSelect").remove();e(this).removeData("imgAreaSelect")}else{e(this).data("imgAreaSelect").setOptions(g)}}else{if(!g.remove){if(g.enable===undefined&&g.disable===undefined){g.enable=true}e(this).data("imgAreaSelect",new e.imgAreaSelect(this,g))}}});if(g.instance){return e(this).data("imgAreaSelect")}return this}})(jQuery);
\ No newline at end of file
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/js/plupload/wp-plupload.dev.js ./wordpress-3.4.2/wp-includes/js/plupload/wp-plupload.dev.js
*** ./wordpress-3.4.1/wp-includes/js/plupload/wp-plupload.dev.js 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/js/plupload/wp-plupload.dev.js 2012-09-03 23:54:01.000000000 -0500
***************
*** 73,78 ****
--- 73,82 ----
this.plupload[ elements[ key ] ] = this[ key ].prop('id');
}
+ // If the uploader has neither a browse button nor a dropzone, bail.
+ if ( ! ( this.browser && this.browser.length ) && ! ( this.dropzone && this.dropzone.length ) )
+ return;
+
this.uploader = new plupload.Uploader( this.plupload );
delete this.plupload;
***************
*** 113,119 ****
});
}( this.dropzone, this.supports.dragdrop ));
! this.browser.on( 'mouseenter', this.refresh );
this.uploader.bind( 'UploadProgress', this.progress );
--- 117,129 ----
});
}( this.dropzone, this.supports.dragdrop ));
! if ( this.browser ) {
! this.browser.on( 'mouseenter', this.refresh );
! } else {
! this.uploader.disableBrowse( true );
! // If HTML5 mode, hide the auto-created file container.
! $('#' + this.uploader.id + '_html5_container').hide();
! }
this.uploader.bind( 'UploadProgress', this.progress );
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/js/plupload/wp-plupload.js ./wordpress-3.4.2/wp-includes/js/plupload/wp-plupload.js
*** ./wordpress-3.4.1/wp-includes/js/plupload/wp-plupload.js 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/js/plupload/wp-plupload.js 2012-09-04 20:55:55.000000000 -0500
***************
*** 1 ****
! if(typeof wp==="undefined"){var wp={}}(function(a,b){var c;if(typeof _wpPluploadSettings==="undefined"){return}c=function(e){var d=this,g={container:"container",browser:"browse_button",dropzone:"drop_element"},f;this.supports={upload:c.browser.supported};this.supported=this.supports.upload;if(!this.supported){return}this.plupload=b.extend(true,{multipart_params:{}},c.defaults);this.container=document.body;b.extend(true,this,e);for(f in this){if(b.isFunction(this[f])){this[f]=b.proxy(this[f],this)}}for(f in g){if(!this[f]){continue}this[f]=b(this[f]).first();if(!this[f].length){delete this[f];continue}if(!this[f].prop("id")){this[f].prop("id","__wp-uploader-id-"+c.uuid++)}this.plupload[g[f]]=this[f].prop("id")}this.uploader=new plupload.Uploader(this.plupload);delete this.plupload;this.param(this.params||{});delete this.params;this.uploader.init();this.supports.dragdrop=this.uploader.features.dragdrop&&!c.browser.mobile;(function(j,h){var i=50,k;if(!j){return}j.toggleClass("supports-drag-drop",!!h);if(!h){return j.unbind(".wp-uploader")}j.bind("dragover.wp-uploader",function(){if(k){return}j.addClass("drag-over");k=true});j.bind("dragleave.wp-uploader, drop.wp-uploader",function(){k=false;j.removeClass("drag-over")})}(this.dropzone,this.supports.dragdrop));this.browser.on("mouseenter",this.refresh);this.uploader.bind("UploadProgress",this.progress);this.uploader.bind("FileUploaded",function(h,j,i){try{i=JSON.parse(i.response)}catch(k){return d.error(pluploadL10n.default_error,k)}if(!i||!i.type||!i.data){return d.error(pluploadL10n.default_error)}if("error"===i.type){return d.error(i.data.message,i.data)}if("success"===i.type){return d.success(i.data)}});this.uploader.bind("Error",function(h,i){var k=pluploadL10n.default_error,j;for(j in c.errorMap){if(i.code===plupload[j]){k=c.errorMap[j];break}}d.error(k,i);h.refresh()});this.uploader.bind("FilesAdded",function(h,i){b.each(i,function(){d.added(this)});h.refresh();h.start()});this.init()};b.extend(c,_wpPluploadSettings);c.uuid=0;c.errorMap={FAILED:pluploadL10n.upload_failed,FILE_EXTENSION_ERROR:pluploadL10n.invalid_filetype,IMAGE_FORMAT_ERROR:pluploadL10n.not_an_image,IMAGE_MEMORY_ERROR:pluploadL10n.image_memory_exceeded,IMAGE_DIMENSIONS_ERROR:pluploadL10n.image_dimensions_exceeded,GENERIC_ERROR:pluploadL10n.upload_failed,IO_ERROR:pluploadL10n.io_error,HTTP_ERROR:pluploadL10n.http_error,SECURITY_ERROR:pluploadL10n.security_error};b.extend(c.prototype,{param:function(d,e){if(arguments.length===1&&typeof d==="string"){return this.uploader.settings.multipart_params[d]}if(arguments.length>1){this.uploader.settings.multipart_params[d]=e}else{b.extend(this.uploader.settings.multipart_params,d)}},init:function(){},error:function(){},success:function(){},added:function(){},progress:function(){},complete:function(){},refresh:function(){this.uploader.refresh()}});a.Uploader=c})(wp,jQuery);
\ No newline at end of file
--- 1 ----
! if(typeof wp==="undefined"){var wp={}}(function(a,b){var c;if(typeof _wpPluploadSettings==="undefined"){return}c=function(e){var d=this,g={container:"container",browser:"browse_button",dropzone:"drop_element"},f;this.supports={upload:c.browser.supported};this.supported=this.supports.upload;if(!this.supported){return}this.plupload=b.extend(true,{multipart_params:{}},c.defaults);this.container=document.body;b.extend(true,this,e);for(f in this){if(b.isFunction(this[f])){this[f]=b.proxy(this[f],this)}}for(f in g){if(!this[f]){continue}this[f]=b(this[f]).first();if(!this[f].length){delete this[f];continue}if(!this[f].prop("id")){this[f].prop("id","__wp-uploader-id-"+c.uuid++)}this.plupload[g[f]]=this[f].prop("id")}if(!(this.browser&&this.browser.length)&&!(this.dropzone&&this.dropzone.length)){return}this.uploader=new plupload.Uploader(this.plupload);delete this.plupload;this.param(this.params||{});delete this.params;this.uploader.init();this.supports.dragdrop=this.uploader.features.dragdrop&&!c.browser.mobile;(function(j,h){var i=50,k;if(!j){return}j.toggleClass("supports-drag-drop",!!h);if(!h){return j.unbind(".wp-uploader")}j.bind("dragover.wp-uploader",function(){if(k){return}j.addClass("drag-over");k=true});j.bind("dragleave.wp-uploader, drop.wp-uploader",function(){k=false;j.removeClass("drag-over")})}(this.dropzone,this.supports.dragdrop));if(this.browser){this.browser.on("mouseenter",this.refresh)}else{this.uploader.disableBrowse(true);b("#"+this.uploader.id+"_html5_container").hide()}this.uploader.bind("UploadProgress",this.progress);this.uploader.bind("FileUploaded",function(h,j,i){try{i=JSON.parse(i.response)}catch(k){return d.error(pluploadL10n.default_error,k)}if(!i||!i.type||!i.data){return d.error(pluploadL10n.default_error)}if("error"===i.type){return d.error(i.data.message,i.data)}if("success"===i.type){return d.success(i.data)}});this.uploader.bind("Error",function(h,i){var k=pluploadL10n.default_error,j;for(j in c.errorMap){if(i.code===plupload[j]){k=c.errorMap[j];break}}d.error(k,i);h.refresh()});this.uploader.bind("FilesAdded",function(h,i){b.each(i,function(){d.added(this)});h.refresh();h.start()});this.init()};b.extend(c,_wpPluploadSettings);c.uuid=0;c.errorMap={FAILED:pluploadL10n.upload_failed,FILE_EXTENSION_ERROR:pluploadL10n.invalid_filetype,IMAGE_FORMAT_ERROR:pluploadL10n.not_an_image,IMAGE_MEMORY_ERROR:pluploadL10n.image_memory_exceeded,IMAGE_DIMENSIONS_ERROR:pluploadL10n.image_dimensions_exceeded,GENERIC_ERROR:pluploadL10n.upload_failed,IO_ERROR:pluploadL10n.io_error,HTTP_ERROR:pluploadL10n.http_error,SECURITY_ERROR:pluploadL10n.security_error};b.extend(c.prototype,{param:function(d,e){if(arguments.length===1&&typeof d==="string"){return this.uploader.settings.multipart_params[d]}if(arguments.length>1){this.uploader.settings.multipart_params[d]=e}else{b.extend(this.uploader.settings.multipart_params,d)}},init:function(){},error:function(){},success:function(){},added:function(){},progress:function(){},complete:function(){},refresh:function(){this.uploader.refresh()}});a.Uploader=c})(wp,jQuery);
\ No newline at end of file
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/js/tinymce/langs/wp-langs.php ./wordpress-3.4.2/wp-includes/js/tinymce/langs/wp-langs.php
*** ./wordpress-3.4.1/wp-includes/js/tinymce/langs/wp-langs.php 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/js/tinymce/langs/wp-langs.php 2012-07-25 14:58:10.000000000 -0500
***************
*** 8,13 ****
--- 8,16 ----
return esc_js($text);
}
+ if ( ! class_exists( '_WP_Editors' ) )
+ require( ABSPATH . WPINC . '/class-wp-editor.php' );
+
function wp_mce_translation() {
$default = array(
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/js/tinymce/plugins/wpeditimage/editor_plugin_src.js ./wordpress-3.4.2/wp-includes/js/tinymce/plugins/wpeditimage/editor_plugin_src.js
*** ./wordpress-3.4.1/wp-includes/js/tinymce/plugins/wpeditimage/editor_plugin_src.js 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/js/tinymce/plugins/wpeditimage/editor_plugin_src.js 2012-07-16 14:57:03.000000000 -0500
***************
*** 142,154 ****
var id, cls, w, cap, div_cls, img, trim = tinymce.trim;
id = b.match(/id=['"]([^'"]*)['"] ?/);
! b = b.replace(id[0], '');
cls = b.match(/align=['"]([^'"]*)['"] ?/);
! b = b.replace(cls[0], '');
w = b.match(/width=['"]([0-9]*)['"] ?/);
! b = b.replace(w[0], '');
c = trim(c);
img = c.match(/((?:]+>)? ]+>(?:<\/a>)?)([\s\S]*)/i);
--- 142,157 ----
var id, cls, w, cap, div_cls, img, trim = tinymce.trim;
id = b.match(/id=['"]([^'"]*)['"] ?/);
! if ( id )
! b = b.replace(id[0], '');
cls = b.match(/align=['"]([^'"]*)['"] ?/);
! if ( cls )
! b = b.replace(cls[0], '');
w = b.match(/width=['"]([0-9]*)['"] ?/);
! if ( w )
! b = b.replace(w[0], '');
c = trim(c);
img = c.match(/((?: ]+>)? ]+>(?:<\/a>)?)([\s\S]*)/i);
Binary files ./wordpress-3.4.1/wp-includes/js/tinymce/wp-tinymce.js.gz and ./wordpress-3.4.2/wp-includes/js/tinymce/wp-tinymce.js.gz differ
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/js/wp-lists.dev.js ./wordpress-3.4.2/wp-includes/js/wp-lists.dev.js
*** ./wordpress-3.4.1/wp-includes/js/wp-lists.dev.js 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/js/wp-lists.dev.js 2012-09-04 15:28:52.000000000 -0500
***************
*** 78,84 ****
if ( !s )
return false;
! if ( !e.is('[class^="add:' + list.id + ':"]') )
return !wpList.add.call( list, e, s );
if ( !s.element )
--- 78,84 ----
if ( !s )
return false;
! if ( !e.is('[id="' + s.what + '-add-submit"]') )
return !wpList.add.call( list, e, s );
if ( !s.element )
***************
*** 397,403 ****
return list.wpList.add(this);
});
! $el.delegate( '[class^="add:' + list.id + ':"]:not(form)', 'click', function(){
return list.wpList.add(this);
});
--- 397,403 ----
return list.wpList.add(this);
});
! $el.delegate( 'a[class^="add:' + list.id + ':"], input[class^="add:' + list.id + ':"]', 'click', function(){
return list.wpList.add(this);
});
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/js/wp-lists.js ./wordpress-3.4.2/wp-includes/js/wp-lists.js
*** ./wordpress-3.4.1/wp-includes/js/wp-lists.js 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/js/wp-lists.js 2012-09-04 20:55:55.000000000 -0500
***************
*** 1 ****
! (function(b){var a={add:"ajaxAdd",del:"ajaxDel",dim:"ajaxDim",process:"process",recolor:"recolor"},c;c={settings:{url:ajaxurl,type:"POST",response:"ajax-response",what:"",alt:"alternate",altOffset:0,addColor:null,delColor:null,dimAddColor:null,dimDelColor:null,confirm:null,addBefore:null,addAfter:null,delBefore:null,delAfter:null,dimBefore:null,dimAfter:null},nonce:function(g,f){var d=wpAjax.unserialize(g.attr("href"));return f.nonce||d._ajax_nonce||b("#"+f.element+' input[name="_ajax_nonce"]').val()||d._wpnonce||b("#"+f.element+' input[name="_wpnonce"]').val()||0},parseClass:function(h,f){var i=[],d;try{d=b(h).attr("class")||"";d=d.match(new RegExp(f+":[\\S]+"));if(d){i=d[0].split(":")}}catch(g){}return i},pre:function(i,g,d){var f,h;g=b.extend({},this.wpList.settings,{element:null,nonce:0,target:i.get(0)},g||{});if(b.isFunction(g.confirm)){if("add"!=d){f=b("#"+g.element).css("backgroundColor");b("#"+g.element).css("backgroundColor","#FF9966")}h=g.confirm.call(this,i,g,d,f);if("add"!=d){b("#"+g.element).css("backgroundColor",f)}if(!h){return false}}return g},ajaxAdd:function(g,m){g=b(g);m=m||{};var h=this,l=c.parseClass(g,"add"),j,d,f,i,k;m=c.pre.call(h,g,m,"add");m.element=l[2]||g.attr("id")||m.element||null;if(l[3]){m.addColor="#"+l[3]}else{m.addColor=m.addColor||"#FFFF33"}if(!m){return false}if(!g.is('[class^="add:'+h.id+':"]')){return !c.add.call(h,g,m)}if(!m.element){return true}m.action="add-"+m.what;m.nonce=c.nonce(g,m);j=b("#"+m.element+" :input").not('[name="_ajax_nonce"], [name="_wpnonce"], [name="action"]');d=wpAjax.validateForm("#"+m.element);if(!d){return false}m.data=b.param(b.extend({_ajax_nonce:m.nonce,action:m.action},wpAjax.unserialize(l[4]||"")));f=b.isFunction(j.fieldSerialize)?j.fieldSerialize():j.serialize();if(f){m.data+="&"+f}if(b.isFunction(m.addBefore)){m=m.addBefore(m);if(!m){return true}}if(!m.data.match(/_ajax_nonce=[a-f0-9]+/)){return true}m.success=function(e){i=wpAjax.parseAjaxResponse(e,m.response,m.element);k=e;if(!i||i.errors){return false}if(true===i){return true}jQuery.each(i.responses,function(){c.add.call(h,this.data,b.extend({},m,{pos:this.position||0,id:this.id||0,oldId:this.oldId||null}))});h.wpList.recolor();b(h).trigger("wpListAddEnd",[m,h.wpList]);c.clear.call(h,"#"+m.element)};m.complete=function(e,n){if(b.isFunction(m.addAfter)){var o=b.extend({xml:e,status:n,parsed:i},m);m.addAfter(k,o)}};b.ajax(m);return false},ajaxDel:function(k,i){k=b(k);i=i||{};var j=this,d=c.parseClass(k,"delete"),h,g,f;i=c.pre.call(j,k,i,"delete");i.element=d[2]||i.element||null;if(d[3]){i.delColor="#"+d[3]}else{i.delColor=i.delColor||"#faa"}if(!i||!i.element){return false}i.action="delete-"+i.what;i.nonce=c.nonce(k,i);i.data=b.extend({action:i.action,id:i.element.split("-").pop(),_ajax_nonce:i.nonce},wpAjax.unserialize(d[4]||""));if(b.isFunction(i.delBefore)){i=i.delBefore(i,j);if(!i){return true}}if(!i.data._ajax_nonce){return true}h=b("#"+i.element);if("none"!=i.delColor){h.css("backgroundColor",i.delColor).fadeOut(350,function(){j.wpList.recolor();b(j).trigger("wpListDelEnd",[i,j.wpList])})}else{j.wpList.recolor();b(j).trigger("wpListDelEnd",[i,j.wpList])}i.success=function(e){g=wpAjax.parseAjaxResponse(e,i.response,i.element);f=e;if(!g||g.errors){h.stop().stop().css("backgroundColor","#faa").show().queue(function(){j.wpList.recolor();b(this).dequeue()});return false}};i.complete=function(e,l){if(b.isFunction(i.delAfter)){h.queue(function(){var m=b.extend({xml:e,status:l,parsed:g},i);i.delAfter(f,m)}).dequeue()}};b.ajax(i);return false},ajaxDim:function(h,n){if(b(h).parent().css("display")=="none"){return false}h=b(h);n=n||{};var i=this,m=c.parseClass(h,"dim"),g,d,f,k,j,l;n=c.pre.call(i,h,n,"dim");n.element=m[2]||n.element||null;n.dimClass=m[3]||n.dimClass||null;if(m[4]){n.dimAddColor="#"+m[4]}else{n.dimAddColor=n.dimAddColor||"#FFFF33"}if(m[5]){n.dimDelColor="#"+m[5]}else{n.dimDelColor=n.dimDelColor||"#FF3333"}if(!n||!n.element||!n.dimClass){return true}n.action="dim-"+n.what;n.nonce=c.nonce(h,n);n.data=b.extend({action:n.action,id:n.element.split("-").pop(),dimClass:n.dimClass,_ajax_nonce:n.nonce},wpAjax.unserialize(m[6]||""));if(b.isFunction(n.dimBefore)){n=n.dimBefore(n);if(!n){return true}}g=b("#"+n.element);d=g.toggleClass(n.dimClass).is("."+n.dimClass);f=c.getColor(g);g.toggleClass(n.dimClass);k=d?n.dimAddColor:n.dimDelColor;if("none"!=k){g.animate({backgroundColor:k},"fast").queue(function(){g.toggleClass(n.dimClass);b(this).dequeue()}).animate({backgroundColor:f},{complete:function(){b(this).css("backgroundColor","");b(i).trigger("wpListDimEnd",[n,i.wpList])}})}else{b(i).trigger("wpListDimEnd",[n,i.wpList])}if(!n.data._ajax_nonce){return true}n.success=function(e){j=wpAjax.parseAjaxResponse(e,n.response,n.element);l=e;if(!j||j.errors){g.stop().stop().css("backgroundColor","#FF3333")[d?"removeClass":"addClass"](n.dimClass).show().queue(function(){i.wpList.recolor();b(this).dequeue()});return false}};n.complete=function(e,o){if(b.isFunction(n.dimAfter)){g.queue(function(){var p=b.extend({xml:e,status:o,parsed:j},n);n.dimAfter(l,p)}).dequeue()}};b.ajax(n);return false},getColor:function(e){var d=jQuery(e).css("backgroundColor");return d||"#ffffff"},add:function(k,g){k=b(k);var i=b(this),d=false,j={pos:0,id:0,oldId:null},l,h,f;if("string"==typeof g){g={what:g}}g=b.extend(j,this.wpList.settings,g);if(!k.size()||!g.what){return false}if(g.oldId){d=b("#"+g.what+"-"+g.oldId)}if(g.id&&(g.id!=g.oldId||!d||!d.size())){b("#"+g.what+"-"+g.id).remove()}if(d&&d.size()){d.before(k);d.remove()}else{if(isNaN(g.pos)){l="after";if("-"==g.pos.substr(0,1)){g.pos=g.pos.substr(1);l="before"}h=i.find("#"+g.pos);if(1===h.size()){h[l](k)}else{i.append(k)}}else{if("comment"!=g.what||0===b("#"+g.element).length){if(g.pos<0){i.prepend(k)}else{i.append(k)}}}}if(g.alt){if((i.children(":visible").index(k[0])+g.altOffset)%2){k.removeClass(g.alt)}else{k.addClass(g.alt)}}if("none"!=g.addColor){f=c.getColor(k);k.css("backgroundColor",g.addColor).animate({backgroundColor:f},{complete:function(){b(this).css("backgroundColor","")}})}i.each(function(){this.wpList.process(k)});return k},clear:function(h){var g=this,f,d;h=b(h);if(g.wpList&&h.parents("#"+g.id).size()){return}h.find(":input").each(function(){if(b(this).parents(".form-no-clear").size()){return}f=this.type.toLowerCase();d=this.tagName.toLowerCase();if("text"==f||"password"==f||"textarea"==d){this.value=""}else{if("checkbox"==f||"radio"==f){this.checked=false}else{if("select"==d){this.selectedIndex=null}}}})},process:function(e){var f=this,d=b(e||document);d.delegate('form[class^="add:'+f.id+':"]',"submit",function(){return f.wpList.add(this)});d.delegate('[class^="add:'+f.id+':"]:not(form)',"click",function(){return f.wpList.add(this)});d.delegate('[class^="delete:'+f.id+':"]',"click",function(){return f.wpList.del(this)});d.delegate('[class^="dim:'+f.id+':"]',"click",function(){return f.wpList.dim(this)})},recolor:function(){var f=this,e,d;if(!f.wpList.settings.alt){return}e=b(".list-item:visible",f);if(!e.size()){e=b(f).children(":visible")}d=[":even",":odd"];if(f.wpList.settings.altOffset%2){d.reverse()}e.filter(d[0]).addClass(f.wpList.settings.alt).end().filter(d[1]).removeClass(f.wpList.settings.alt)},init:function(){var d=this;d.wpList.process=function(e){d.each(function(){this.wpList.process(e)})};d.wpList.recolor=function(){d.each(function(){this.wpList.recolor()})}}};b.fn.wpList=function(d){this.each(function(){var e=this;this.wpList={settings:b.extend({},c.settings,{what:c.parseClass(this,"list")[1]||""},d)};b.each(a,function(g,h){e.wpList[g]=function(i,f){return c[h].call(e,i,f)}})});c.init.call(this);this.wpList.process();return this}})(jQuery);
\ No newline at end of file
--- 1 ----
! (function(b){var a={add:"ajaxAdd",del:"ajaxDel",dim:"ajaxDim",process:"process",recolor:"recolor"},c;c={settings:{url:ajaxurl,type:"POST",response:"ajax-response",what:"",alt:"alternate",altOffset:0,addColor:null,delColor:null,dimAddColor:null,dimDelColor:null,confirm:null,addBefore:null,addAfter:null,delBefore:null,delAfter:null,dimBefore:null,dimAfter:null},nonce:function(g,f){var d=wpAjax.unserialize(g.attr("href"));return f.nonce||d._ajax_nonce||b("#"+f.element+' input[name="_ajax_nonce"]').val()||d._wpnonce||b("#"+f.element+' input[name="_wpnonce"]').val()||0},parseClass:function(h,f){var i=[],d;try{d=b(h).attr("class")||"";d=d.match(new RegExp(f+":[\\S]+"));if(d){i=d[0].split(":")}}catch(g){}return i},pre:function(i,g,d){var f,h;g=b.extend({},this.wpList.settings,{element:null,nonce:0,target:i.get(0)},g||{});if(b.isFunction(g.confirm)){if("add"!=d){f=b("#"+g.element).css("backgroundColor");b("#"+g.element).css("backgroundColor","#FF9966")}h=g.confirm.call(this,i,g,d,f);if("add"!=d){b("#"+g.element).css("backgroundColor",f)}if(!h){return false}}return g},ajaxAdd:function(g,m){g=b(g);m=m||{};var h=this,l=c.parseClass(g,"add"),j,d,f,i,k;m=c.pre.call(h,g,m,"add");m.element=l[2]||g.attr("id")||m.element||null;if(l[3]){m.addColor="#"+l[3]}else{m.addColor=m.addColor||"#FFFF33"}if(!m){return false}if(!g.is('[id="'+m.what+'-add-submit"]')){return !c.add.call(h,g,m)}if(!m.element){return true}m.action="add-"+m.what;m.nonce=c.nonce(g,m);j=b("#"+m.element+" :input").not('[name="_ajax_nonce"], [name="_wpnonce"], [name="action"]');d=wpAjax.validateForm("#"+m.element);if(!d){return false}m.data=b.param(b.extend({_ajax_nonce:m.nonce,action:m.action},wpAjax.unserialize(l[4]||"")));f=b.isFunction(j.fieldSerialize)?j.fieldSerialize():j.serialize();if(f){m.data+="&"+f}if(b.isFunction(m.addBefore)){m=m.addBefore(m);if(!m){return true}}if(!m.data.match(/_ajax_nonce=[a-f0-9]+/)){return true}m.success=function(e){i=wpAjax.parseAjaxResponse(e,m.response,m.element);k=e;if(!i||i.errors){return false}if(true===i){return true}jQuery.each(i.responses,function(){c.add.call(h,this.data,b.extend({},m,{pos:this.position||0,id:this.id||0,oldId:this.oldId||null}))});h.wpList.recolor();b(h).trigger("wpListAddEnd",[m,h.wpList]);c.clear.call(h,"#"+m.element)};m.complete=function(e,n){if(b.isFunction(m.addAfter)){var o=b.extend({xml:e,status:n,parsed:i},m);m.addAfter(k,o)}};b.ajax(m);return false},ajaxDel:function(k,i){k=b(k);i=i||{};var j=this,d=c.parseClass(k,"delete"),h,g,f;i=c.pre.call(j,k,i,"delete");i.element=d[2]||i.element||null;if(d[3]){i.delColor="#"+d[3]}else{i.delColor=i.delColor||"#faa"}if(!i||!i.element){return false}i.action="delete-"+i.what;i.nonce=c.nonce(k,i);i.data=b.extend({action:i.action,id:i.element.split("-").pop(),_ajax_nonce:i.nonce},wpAjax.unserialize(d[4]||""));if(b.isFunction(i.delBefore)){i=i.delBefore(i,j);if(!i){return true}}if(!i.data._ajax_nonce){return true}h=b("#"+i.element);if("none"!=i.delColor){h.css("backgroundColor",i.delColor).fadeOut(350,function(){j.wpList.recolor();b(j).trigger("wpListDelEnd",[i,j.wpList])})}else{j.wpList.recolor();b(j).trigger("wpListDelEnd",[i,j.wpList])}i.success=function(e){g=wpAjax.parseAjaxResponse(e,i.response,i.element);f=e;if(!g||g.errors){h.stop().stop().css("backgroundColor","#faa").show().queue(function(){j.wpList.recolor();b(this).dequeue()});return false}};i.complete=function(e,l){if(b.isFunction(i.delAfter)){h.queue(function(){var m=b.extend({xml:e,status:l,parsed:g},i);i.delAfter(f,m)}).dequeue()}};b.ajax(i);return false},ajaxDim:function(h,n){if(b(h).parent().css("display")=="none"){return false}h=b(h);n=n||{};var i=this,m=c.parseClass(h,"dim"),g,d,f,k,j,l;n=c.pre.call(i,h,n,"dim");n.element=m[2]||n.element||null;n.dimClass=m[3]||n.dimClass||null;if(m[4]){n.dimAddColor="#"+m[4]}else{n.dimAddColor=n.dimAddColor||"#FFFF33"}if(m[5]){n.dimDelColor="#"+m[5]}else{n.dimDelColor=n.dimDelColor||"#FF3333"}if(!n||!n.element||!n.dimClass){return true}n.action="dim-"+n.what;n.nonce=c.nonce(h,n);n.data=b.extend({action:n.action,id:n.element.split("-").pop(),dimClass:n.dimClass,_ajax_nonce:n.nonce},wpAjax.unserialize(m[6]||""));if(b.isFunction(n.dimBefore)){n=n.dimBefore(n);if(!n){return true}}g=b("#"+n.element);d=g.toggleClass(n.dimClass).is("."+n.dimClass);f=c.getColor(g);g.toggleClass(n.dimClass);k=d?n.dimAddColor:n.dimDelColor;if("none"!=k){g.animate({backgroundColor:k},"fast").queue(function(){g.toggleClass(n.dimClass);b(this).dequeue()}).animate({backgroundColor:f},{complete:function(){b(this).css("backgroundColor","");b(i).trigger("wpListDimEnd",[n,i.wpList])}})}else{b(i).trigger("wpListDimEnd",[n,i.wpList])}if(!n.data._ajax_nonce){return true}n.success=function(e){j=wpAjax.parseAjaxResponse(e,n.response,n.element);l=e;if(!j||j.errors){g.stop().stop().css("backgroundColor","#FF3333")[d?"removeClass":"addClass"](n.dimClass).show().queue(function(){i.wpList.recolor();b(this).dequeue()});return false}};n.complete=function(e,o){if(b.isFunction(n.dimAfter)){g.queue(function(){var p=b.extend({xml:e,status:o,parsed:j},n);n.dimAfter(l,p)}).dequeue()}};b.ajax(n);return false},getColor:function(e){var d=jQuery(e).css("backgroundColor");return d||"#ffffff"},add:function(k,g){k=b(k);var i=b(this),d=false,j={pos:0,id:0,oldId:null},l,h,f;if("string"==typeof g){g={what:g}}g=b.extend(j,this.wpList.settings,g);if(!k.size()||!g.what){return false}if(g.oldId){d=b("#"+g.what+"-"+g.oldId)}if(g.id&&(g.id!=g.oldId||!d||!d.size())){b("#"+g.what+"-"+g.id).remove()}if(d&&d.size()){d.before(k);d.remove()}else{if(isNaN(g.pos)){l="after";if("-"==g.pos.substr(0,1)){g.pos=g.pos.substr(1);l="before"}h=i.find("#"+g.pos);if(1===h.size()){h[l](k)}else{i.append(k)}}else{if("comment"!=g.what||0===b("#"+g.element).length){if(g.pos<0){i.prepend(k)}else{i.append(k)}}}}if(g.alt){if((i.children(":visible").index(k[0])+g.altOffset)%2){k.removeClass(g.alt)}else{k.addClass(g.alt)}}if("none"!=g.addColor){f=c.getColor(k);k.css("backgroundColor",g.addColor).animate({backgroundColor:f},{complete:function(){b(this).css("backgroundColor","")}})}i.each(function(){this.wpList.process(k)});return k},clear:function(h){var g=this,f,d;h=b(h);if(g.wpList&&h.parents("#"+g.id).size()){return}h.find(":input").each(function(){if(b(this).parents(".form-no-clear").size()){return}f=this.type.toLowerCase();d=this.tagName.toLowerCase();if("text"==f||"password"==f||"textarea"==d){this.value=""}else{if("checkbox"==f||"radio"==f){this.checked=false}else{if("select"==d){this.selectedIndex=null}}}})},process:function(e){var f=this,d=b(e||document);d.delegate('form[class^="add:'+f.id+':"]',"submit",function(){return f.wpList.add(this)});d.delegate('a[class^="add:'+f.id+':"], input[class^="add:'+f.id+':"]',"click",function(){return f.wpList.add(this)});d.delegate('[class^="delete:'+f.id+':"]',"click",function(){return f.wpList.del(this)});d.delegate('[class^="dim:'+f.id+':"]',"click",function(){return f.wpList.dim(this)})},recolor:function(){var f=this,e,d;if(!f.wpList.settings.alt){return}e=b(".list-item:visible",f);if(!e.size()){e=b(f).children(":visible")}d=[":even",":odd"];if(f.wpList.settings.altOffset%2){d.reverse()}e.filter(d[0]).addClass(f.wpList.settings.alt).end().filter(d[1]).removeClass(f.wpList.settings.alt)},init:function(){var d=this;d.wpList.process=function(e){d.each(function(){this.wpList.process(e)})};d.wpList.recolor=function(){d.each(function(){this.wpList.recolor()})}}};b.fn.wpList=function(d){this.each(function(){var e=this;this.wpList={settings:b.extend({},c.settings,{what:c.parseClass(this,"list")[1]||""},d)};b.each(a,function(g,h){e.wpList[g]=function(i,f){return c[h].call(e,i,f)}})});c.init.call(this);this.wpList.process();return this}})(jQuery);
\ No newline at end of file
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/load.php ./wordpress-3.4.2/wp-includes/load.php
*** ./wordpress-3.4.1/wp-includes/load.php 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/load.php 2012-09-04 15:31:14.000000000 -0500
***************
*** 105,116 ****
$php_version = phpversion();
if ( version_compare( $required_php_version, $php_version, '>' ) ) {
wp_load_translations_early();
! wp_die( sprintf( __( 'Your server is running PHP version %1$s but WordPress %2$s requires at least %3$s.' ), $php_version, $wp_version, $required_php_version ) );
}
if ( ! extension_loaded( 'mysql' ) && ! file_exists( WP_CONTENT_DIR . '/db.php' ) ) {
wp_load_translations_early();
! wp_die( __( 'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.' ) );
}
}
--- 105,116 ----
$php_version = phpversion();
if ( version_compare( $required_php_version, $php_version, '>' ) ) {
wp_load_translations_early();
! die( sprintf( __( 'Your server is running PHP version %1$s but WordPress %2$s requires at least %3$s.' ), $php_version, $wp_version, $required_php_version ) );
}
if ( ! extension_loaded( 'mysql' ) && ! file_exists( WP_CONTENT_DIR . '/db.php' ) ) {
wp_load_translations_early();
! die( __( 'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.' ) );
}
}
***************
*** 685,691 ****
require_once ABSPATH . WPINC . '/locale.php';
// General libraries
- require_once ABSPATH . WPINC . '/functions.php';
require_once ABSPATH . WPINC . '/plugin.php';
$locales = $locations = array();
--- 685,690 ----
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/rewrite.php ./wordpress-3.4.2/wp-includes/rewrite.php
*** ./wordpress-3.4.1/wp-includes/rewrite.php 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/rewrite.php 2012-09-03 18:21:38.000000000 -0500
***************
*** 1537,1543 ****
$registration_pages['.*wp-register.php$'] = $this->index . '?register=true'; // Deprecated
// Post
! $post_rewrite = $this->generate_rewrite_rules( $this->permalink_structure, EP_PERMALINK, false );
$post_rewrite = apply_filters('post_rewrite_rules', $post_rewrite);
// Date
--- 1537,1543 ----
$registration_pages['.*wp-register.php$'] = $this->index . '?register=true'; // Deprecated
// Post
! $post_rewrite = $this->generate_rewrite_rules( $this->permalink_structure, EP_PERMALINK );
$post_rewrite = apply_filters('post_rewrite_rules', $post_rewrite);
// Date
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/taxonomy.php ./wordpress-3.4.2/wp-includes/taxonomy.php
*** ./wordpress-3.4.1/wp-includes/taxonomy.php 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/taxonomy.php 2012-09-04 20:25:47.000000000 -0500
***************
*** 1926,1931 ****
--- 1926,1935 ----
if ( !empty($orderby) )
$orderby = "ORDER BY $orderby";
+ $order = strtoupper( $order );
+ if ( '' !== $order && ! in_array( $order, array( 'ASC', 'DESC' ) ) )
+ $order = 'ASC';
+
$taxonomies = "'" . implode("', '", $taxonomies) . "'";
$object_ids = implode(', ', $object_ids);
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/theme.php ./wordpress-3.4.2/wp-includes/theme.php
*** ./wordpress-3.4.1/wp-includes/theme.php 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/theme.php 2012-09-04 17:26:14.000000000 -0500
***************
*** 1629,1639 ****
* @since 3.4.0
*
* @param string $stylesheet Optional. Theme to customize. Defaults to current theme.
*/
function wp_customize_url( $stylesheet = null ) {
$url = admin_url( 'customize.php' );
if ( $stylesheet )
! $url .= '?theme=' . $stylesheet;
return esc_url( $url );
}
--- 1629,1640 ----
* @since 3.4.0
*
* @param string $stylesheet Optional. Theme to customize. Defaults to current theme.
+ * The theme's stylesheet will be urlencoded if necessary.
*/
function wp_customize_url( $stylesheet = null ) {
$url = admin_url( 'customize.php' );
if ( $stylesheet )
! $url .= '?theme=' . urlencode( $stylesheet );
return esc_url( $url );
}
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-includes/version.php ./wordpress-3.4.2/wp-includes/version.php
*** ./wordpress-3.4.1/wp-includes/version.php 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-includes/version.php 2012-09-06 14:41:17.000000000 -0500
***************
*** 4,24 ****
*
* @global string $wp_version
*/
! $wp_version = '3.4.1';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
*
* @global int $wp_db_version
*/
! $wp_db_version = 21115;
/**
* Holds the TinyMCE version
*
* @global string $tinymce_version
*/
! $tinymce_version = '349-20805';
/**
* Holds the cache manifest version
--- 4,24 ----
*
* @global string $wp_version
*/
! $wp_version = '3.4.2';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
*
* @global int $wp_db_version
*/
! $wp_db_version = 21707;
/**
* Holds the TinyMCE version
*
* @global string $tinymce_version
*/
! $tinymce_version = '349-21274';
/**
* Holds the cache manifest version
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=wp-config.php --exclude=wordpress.sql --exclude=.htaccess-dist --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.2.pl ./wordpress-3.4.1/wp-load.php ./wordpress-3.4.2/wp-load.php
*** ./wordpress-3.4.1/wp-load.php 2012-08-07 10:59:23.000000000 -0500
--- ./wordpress-3.4.2/wp-load.php 2012-09-04 15:31:14.000000000 -0500
***************
*** 48,55 ****
require_once( ABSPATH . WPINC . '/load.php' );
require_once( ABSPATH . WPINC . '/version.php' );
- wp_load_translations_early();
wp_check_php_mysql_versions();
// Die with an error message
$die = __( "There doesn't seem to be a wp-config.php file. I need this before we can get started." ) . '
';
--- 48,57 ----
require_once( ABSPATH . WPINC . '/load.php' );
require_once( ABSPATH . WPINC . '/version.php' );
wp_check_php_mysql_versions();
+ wp_load_translations_early();
+
+ require_once( ABSPATH . WPINC . '/functions.php' );
// Die with an error message
$die = __( "There doesn't seem to be a wp-config.php file. I need this before we can get started." ) . '';