Dashboard
PHP:
8.3.33
OS:
Linux
User:
ajstan55
/
/
home3
/
ajstan55
/
public_html
/
CHACHADANCE.INFO
📤 Upload
📝 New File
📁 New Folder
Close
Editing: wordpress-3.4-to-wordpress-3.4.1.patch
diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/COMMIT_EDITMSG ./wordpress-3.4.1/.git/COMMIT_EDITMSG *** ./wordpress-3.4/.git/COMMIT_EDITMSG 2012-06-13 17:00:00.000000000 -0500 --- ./wordpress-3.4.1/.git/COMMIT_EDITMSG 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - Initial --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/config ./wordpress-3.4.1/.git/config *** ./wordpress-3.4/.git/config 2012-06-13 16:59:50.000000000 -0500 --- ./wordpress-3.4.1/.git/config 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,5 **** - [core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/description ./wordpress-3.4.1/.git/description *** ./wordpress-3.4/.git/description 2012-06-13 16:59:50.000000000 -0500 --- ./wordpress-3.4.1/.git/description 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - Unnamed repository; edit this file 'description' to name the repository. --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/HEAD ./wordpress-3.4.1/.git/HEAD *** ./wordpress-3.4/.git/HEAD 2012-06-13 16:59:53.000000000 -0500 --- ./wordpress-3.4.1/.git/HEAD 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - ref: refs/heads/3.4 --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/hooks/applypatch-msg.sample ./wordpress-3.4.1/.git/hooks/applypatch-msg.sample *** ./wordpress-3.4/.git/hooks/applypatch-msg.sample 2012-06-13 16:59:50.000000000 -0500 --- ./wordpress-3.4.1/.git/hooks/applypatch-msg.sample 1969-12-31 18:00:00.000000000 -0600 *************** *** 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+"$@"} - : --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/hooks/commit-msg.sample ./wordpress-3.4.1/.git/hooks/commit-msg.sample *** ./wordpress-3.4/.git/hooks/commit-msg.sample 2012-06-13 16:59:50.000000000 -0500 --- ./wordpress-3.4.1/.git/hooks/commit-msg.sample 1969-12-31 18:00:00.000000000 -0600 *************** *** 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 - } --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/hooks/post-commit.sample ./wordpress-3.4.1/.git/hooks/post-commit.sample *** ./wordpress-3.4/.git/hooks/post-commit.sample 2012-06-13 16:59:50.000000000 -0500 --- ./wordpress-3.4.1/.git/hooks/post-commit.sample 1969-12-31 18:00:00.000000000 -0600 *************** *** 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 --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/hooks/post-receive.sample ./wordpress-3.4.1/.git/hooks/post-receive.sample *** ./wordpress-3.4/.git/hooks/post-receive.sample 2012-06-13 16:59:50.000000000 -0500 --- ./wordpress-3.4.1/.git/hooks/post-receive.sample 1969-12-31 18:00:00.000000000 -0600 *************** *** 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 - # <oldrev> <newrev> <refname> - # 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 --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/hooks/post-update.sample ./wordpress-3.4.1/.git/hooks/post-update.sample *** ./wordpress-3.4/.git/hooks/post-update.sample 2012-06-13 16:59:50.000000000 -0500 --- ./wordpress-3.4.1/.git/hooks/post-update.sample 1969-12-31 18:00:00.000000000 -0600 *************** *** 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 --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/hooks/pre-applypatch.sample ./wordpress-3.4.1/.git/hooks/pre-applypatch.sample *** ./wordpress-3.4/.git/hooks/pre-applypatch.sample 2012-06-13 16:59:50.000000000 -0500 --- ./wordpress-3.4.1/.git/hooks/pre-applypatch.sample 1969-12-31 18:00:00.000000000 -0600 *************** *** 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+"$@"} - : --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/hooks/pre-commit.sample ./wordpress-3.4.1/.git/hooks/pre-commit.sample *** ./wordpress-3.4/.git/hooks/pre-commit.sample 2012-06-13 16:59:50.000000000 -0500 --- ./wordpress-3.4.1/.git/hooks/pre-commit.sample 1969-12-31 18:00:00.000000000 -0600 *************** *** 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 -- --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/hooks/prepare-commit-msg.sample ./wordpress-3.4.1/.git/hooks/prepare-commit-msg.sample *** ./wordpress-3.4/.git/hooks/prepare-commit-msg.sample 2012-06-13 16:59:50.000000000 -0500 --- ./wordpress-3.4.1/.git/hooks/prepare-commit-msg.sample 1969-12-31 18:00:00.000000000 -0600 *************** *** 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" --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/hooks/pre-rebase.sample ./wordpress-3.4.1/.git/hooks/pre-rebase.sample *** ./wordpress-3.4/.git/hooks/pre-rebase.sample 2012-06-13 16:59:50.000000000 -0500 --- ./wordpress-3.4.1/.git/hooks/pre-rebase.sample 1969-12-31 18:00:00.000000000 -0600 *************** *** 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". --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/hooks/update.sample ./wordpress-3.4.1/.git/hooks/update.sample *** ./wordpress-3.4/.git/hooks/update.sample 2012-06-13 16:59:50.000000000 -0500 --- ./wordpress-3.4.1/.git/hooks/update.sample 1969-12-31 18:00:00.000000000 -0600 *************** *** 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 <ref> <oldrev> <newrev>)" >&2 - exit 1 - fi - - if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "Usage: $0 <ref> <oldrev> <newrev>" >&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 --- 0 ---- Binary files ./wordpress-3.4/.git/index and ./wordpress-3.4.1/.git/index differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/info/exclude ./wordpress-3.4.1/.git/info/exclude *** ./wordpress-3.4/.git/info/exclude 2012-06-13 16:59:50.000000000 -0500 --- ./wordpress-3.4.1/.git/info/exclude 1969-12-31 18:00:00.000000000 -0600 *************** *** 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] - # *~ --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/logs/HEAD ./wordpress-3.4.1/.git/logs/HEAD *** ./wordpress-3.4/.git/logs/HEAD 2012-06-13 17:00:00.000000000 -0500 --- ./wordpress-3.4.1/.git/logs/HEAD 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - 0000000000000000000000000000000000000000 ed5bf76e45912ac97b2bcd2616610e03cdda406d John Rummel <jrummel@madisonk.org> 1339624800 -0500 commit (initial): Initial --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/logs/refs/heads/3.4 ./wordpress-3.4.1/.git/logs/refs/heads/3.4 *** ./wordpress-3.4/.git/logs/refs/heads/3.4 2012-06-13 17:00:00.000000000 -0500 --- ./wordpress-3.4.1/.git/logs/refs/heads/3.4 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - 0000000000000000000000000000000000000000 ed5bf76e45912ac97b2bcd2616610e03cdda406d John Rummel <jrummel@madisonk.org> 1339624800 -0500 commit (initial): Initial --- 0 ---- Binary files ./wordpress-3.4/.git/objects/00/3d1ab03d6bc06b87b95ad2a7c7fb89bb5c2461 and ./wordpress-3.4.1/.git/objects/00/3d1ab03d6bc06b87b95ad2a7c7fb89bb5c2461 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/00/502c915ae2a5e5df0bf31b00e3b53849996ef1 ./wordpress-3.4.1/.git/objects/00/502c915ae2a5e5df0bf31b00e3b53849996ef1 *** ./wordpress-3.4/.git/objects/00/502c915ae2a5e5df0bf31b00e3b53849996ef1 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/00/502c915ae2a5e5df0bf31b00e3b53849996ef1 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - x=���0����3�E�@bc�����'Qy|� XN��'ߍƍ����߽��V@�d"����,��:���E#3��'����!\�����߾� a'{����Q���Pɮ��<��fb�q��k��U���U�X�f��Mq�:E \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/00/8892b6c46a31afb13fdf22a6bb6a2e73e2b5eb and ./wordpress-3.4.1/.git/objects/00/8892b6c46a31afb13fdf22a6bb6a2e73e2b5eb differ Binary files ./wordpress-3.4/.git/objects/00/8e8ad3e6581d196b6794e6f139353f0f93cfaa and ./wordpress-3.4.1/.git/objects/00/8e8ad3e6581d196b6794e6f139353f0f93cfaa differ Binary files ./wordpress-3.4/.git/objects/00/b404a3d05c99c9f530996949282ab70f1705d9 and ./wordpress-3.4.1/.git/objects/00/b404a3d05c99c9f530996949282ab70f1705d9 differ Binary files ./wordpress-3.4/.git/objects/01/2b9c7ba3dccdf1bb31b13bf1c8df1bf7367d65 and ./wordpress-3.4.1/.git/objects/01/2b9c7ba3dccdf1bb31b13bf1c8df1bf7367d65 differ Binary files ./wordpress-3.4/.git/objects/01/5ced3013a14a49aecc0fd2fb8d9ff21c2a1190 and ./wordpress-3.4.1/.git/objects/01/5ced3013a14a49aecc0fd2fb8d9ff21c2a1190 differ Binary files ./wordpress-3.4/.git/objects/01/77e5bf9e063f712fccaeb6af9a07c21866c423 and ./wordpress-3.4.1/.git/objects/01/77e5bf9e063f712fccaeb6af9a07c21866c423 differ Binary files ./wordpress-3.4/.git/objects/01/7f676acfb88c55ff48c0baad5b04da79cd34a5 and ./wordpress-3.4.1/.git/objects/01/7f676acfb88c55ff48c0baad5b04da79cd34a5 differ Binary files ./wordpress-3.4/.git/objects/01/ab46041f9bf391a19d779fba6f0dab24afa489 and ./wordpress-3.4.1/.git/objects/01/ab46041f9bf391a19d779fba6f0dab24afa489 differ Binary files ./wordpress-3.4/.git/objects/01/cec6aca3108c22c9fbbc90c449f4d916357d80 and ./wordpress-3.4.1/.git/objects/01/cec6aca3108c22c9fbbc90c449f4d916357d80 differ Binary files ./wordpress-3.4/.git/objects/01/e0d5615b2d76fe96da36c11df131254f975fa4 and ./wordpress-3.4.1/.git/objects/01/e0d5615b2d76fe96da36c11df131254f975fa4 differ Binary files ./wordpress-3.4/.git/objects/01/e6ea70c987e75390d28ad671bf6bcc4ad9d661 and ./wordpress-3.4.1/.git/objects/01/e6ea70c987e75390d28ad671bf6bcc4ad9d661 differ Binary files ./wordpress-3.4/.git/objects/02/54a0881101b767577c82b30a7f6a7f522e6dad and ./wordpress-3.4.1/.git/objects/02/54a0881101b767577c82b30a7f6a7f522e6dad differ Binary files ./wordpress-3.4/.git/objects/02/7ef40e74c1ef1db832c7b3a7713e9e91e0bba1 and ./wordpress-3.4.1/.git/objects/02/7ef40e74c1ef1db832c7b3a7713e9e91e0bba1 differ Binary files ./wordpress-3.4/.git/objects/02/e081f9f416681e4b11e3a412d3c7d5d5adadc0 and ./wordpress-3.4.1/.git/objects/02/e081f9f416681e4b11e3a412d3c7d5d5adadc0 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/02/f0db9a4b98e76640d9a7f68fd83671bd6c30d3 ./wordpress-3.4.1/.git/objects/02/f0db9a4b98e76640d9a7f68fd83671bd6c30d3 *** ./wordpress-3.4/.git/objects/02/f0db9a4b98e76640d9a7f68fd83671bd6c30d3 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/02/f0db9a4b98e76640d9a7f68fd83671bd6c30d3 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,4 **** - x�TMO�0�u�+��YD6���I�rh9 �RUyg��-�aYU��'���K"�Ǜ�7o��z g��/>d��5$=9!pߵ��,w�Z(�e^h|m$��j����Űꑭ�.���n9:aЛ��PkE=H�j��啗["���P�����n�pM�0%�Z�>:'�!Y-���̹<�$g6*�m�(I`c���&�V�+IR�#��� - �Σ��)�^��dU 2*T���Ca:*3�KL$o|4�ȤX��R�:��ʲ�C��-!q+�;S�F�S���Jϟ}H��mc2��3L��-S�[�E��%">� m���V����Aky�G���s�nP?&�g��*��z�RV̰�Y��`g�j��!���{�� P����|\vR��s�R�S����#�&K�k�_X<�يU�QO���F�Ú��ɏ*�NvK��a�4���X����JWYa�;��q��<�vs{����A[�K�5�x�?>�ي�� ��6������?�eæ� - X�5D��6V�!��|v1dө^�e��b� - 3�'�&��z&�2��T�Se�8vÅ۞�f<\��1v�����7���b�o ϣ ��{b�5*D�n�q�U��s:H���D{�Q1ixF¿�kY��x?� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/03/5a185540a119ad5afef3e5d40a3c2797a27294 and ./wordpress-3.4.1/.git/objects/03/5a185540a119ad5afef3e5d40a3c2797a27294 differ Binary files ./wordpress-3.4/.git/objects/03/80a95a61d5573fd8a0eecfbb63b4998e52cce1 and ./wordpress-3.4.1/.git/objects/03/80a95a61d5573fd8a0eecfbb63b4998e52cce1 differ Binary files ./wordpress-3.4/.git/objects/03/834425abb397a74410908242b6276b371aa0ea and ./wordpress-3.4.1/.git/objects/03/834425abb397a74410908242b6276b371aa0ea differ Binary files ./wordpress-3.4/.git/objects/03/b905bf5bd72ff417563b7f11fffd18044f15f1 and ./wordpress-3.4.1/.git/objects/03/b905bf5bd72ff417563b7f11fffd18044f15f1 differ Binary files ./wordpress-3.4/.git/objects/03/c13f644817e5d174b67fd312054932c1ff0e83 and ./wordpress-3.4.1/.git/objects/03/c13f644817e5d174b67fd312054932c1ff0e83 differ Binary files ./wordpress-3.4/.git/objects/03/e06512794a761c81d3ce7e59c820a17a71e099 and ./wordpress-3.4.1/.git/objects/03/e06512794a761c81d3ce7e59c820a17a71e099 differ Binary files ./wordpress-3.4/.git/objects/04/0710bfbf77af952efdf76f3b7c314610606689 and ./wordpress-3.4.1/.git/objects/04/0710bfbf77af952efdf76f3b7c314610606689 differ Binary files ./wordpress-3.4/.git/objects/04/780150b1687255e4f6c7a58184ce0f29e1b4b4 and ./wordpress-3.4.1/.git/objects/04/780150b1687255e4f6c7a58184ce0f29e1b4b4 differ Binary files ./wordpress-3.4/.git/objects/04/79c56cd41e5d460a9c5827280bca7e2c2cb443 and ./wordpress-3.4.1/.git/objects/04/79c56cd41e5d460a9c5827280bca7e2c2cb443 differ Binary files ./wordpress-3.4/.git/objects/04/bb7c91a58886ea4edf42da6324f1ce73ad360e and ./wordpress-3.4.1/.git/objects/04/bb7c91a58886ea4edf42da6324f1ce73ad360e differ Binary files ./wordpress-3.4/.git/objects/04/bbd2859e2db9805ac17bd220dc5bf68a388b5d and ./wordpress-3.4.1/.git/objects/04/bbd2859e2db9805ac17bd220dc5bf68a388b5d differ Binary files ./wordpress-3.4/.git/objects/04/d80de7f733f3771f0c0449f114e59b993031af and ./wordpress-3.4.1/.git/objects/04/d80de7f733f3771f0c0449f114e59b993031af differ Binary files ./wordpress-3.4/.git/objects/04/dfa0f596804575ebf5e94fba0a1c275e670961 and ./wordpress-3.4.1/.git/objects/04/dfa0f596804575ebf5e94fba0a1c275e670961 differ Binary files ./wordpress-3.4/.git/objects/05/2bf133458f5c662fe760e1494ec05f75db88cd and ./wordpress-3.4.1/.git/objects/05/2bf133458f5c662fe760e1494ec05f75db88cd differ Binary files ./wordpress-3.4/.git/objects/05/3f5a83a42c05702372c731fef338cb4bef550e and ./wordpress-3.4.1/.git/objects/05/3f5a83a42c05702372c731fef338cb4bef550e differ Binary files ./wordpress-3.4/.git/objects/05/85ec462db4509e4fa43240b1df2a591b41939b and ./wordpress-3.4.1/.git/objects/05/85ec462db4509e4fa43240b1df2a591b41939b differ Binary files ./wordpress-3.4/.git/objects/05/89e60317e28b619d6fb84da3bb2d830ca766aa and ./wordpress-3.4.1/.git/objects/05/89e60317e28b619d6fb84da3bb2d830ca766aa differ Binary files ./wordpress-3.4/.git/objects/06/5ea9c9acd13f45cb2e18a5edbf886e37bd309a and ./wordpress-3.4.1/.git/objects/06/5ea9c9acd13f45cb2e18a5edbf886e37bd309a differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/06/6caafbbe47b20c770c214bed445e544305119b ./wordpress-3.4.1/.git/objects/06/6caafbbe47b20c770c214bed445e544305119b *** ./wordpress-3.4/.git/objects/06/6caafbbe47b20c770c214bed445e544305119b 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/06/6caafbbe47b20c770c214bed445e544305119b 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,5 **** - xuQ�JA���:{fYv�!`���& - �� 9�45��l���NU���wk�`�[w��Wェ�X��/��2��db`�"�K&�H9�V�����+�����+X\�v - V2��ؒ�� 6$���%���q���Fz�.y��a����)���ڸ�@B�� / ~^�ß�x3*:L�����{�C�8��Ɍ�PE�Ƭ�S�����qS��䍋��5F�*N9 - �辟����~�-�����T〔��l���-2T�}��q�0�:�%����F��Z�m�Nh�M9��8�<"��I1�� B;�2����f�w�2:b�\ؚZbl���Ш - ��e����-��c��h�kN)���~Ƃ \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/06/6ee5909ce7faa69d47221f9cda27de05502e3e and ./wordpress-3.4.1/.git/objects/06/6ee5909ce7faa69d47221f9cda27de05502e3e differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/06/7f36c2c65bd295baecb94e5d106adbb9ad8dd1 ./wordpress-3.4.1/.git/objects/06/7f36c2c65bd295baecb94e5d106adbb9ad8dd1 *** ./wordpress-3.4/.git/objects/06/7f36c2c65bd295baecb94e5d106adbb9ad8dd1 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/06/7f36c2c65bd295baecb94e5d106adbb9ad8dd1 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,6 **** - x�V�o�6ޫ�W����^��/͒.�.k��8�.�ú :��i�-O��E��Q�e�rζ'[)~$?R��rǯ^��ӛj[��� �gIεf�Mh��h%�*ǥ�h - �0P�w-2Y&�/��-<�O˫���|��Y%�9�MO���I�]"��'[�f�L5tNZ��0����Bn8��uOOn���X=���6܈���I�ZCUo�F4��.#d �;5��2!Y�$9��@�u�4��@H(fS���֊�Z`i����0xF��c��q��,�!S6\�"C# - �S������ ��b���@�'(D�a���c��Z�p?c�,�Qu�?��$L�V�ٙEB���1��wy#�A��!w�V�r��xU� - aP��V̹q�0�ͼED�jPyɠ�D9� d��0���𦪎�B3��1�)�MA���̮��A���p�AfȿU��e��[�T��i<7mH���� +�<�wxz������!�G�=Ƚ�������5ʝ��2��s48�r�ڧ�_��8��n��%������߇|�i�Z�rTBYb̋#Z*LiT&F�����S"6��:���F�oi~�L�Y�e�EVX�F�s�M�[��3�O�3��1�"�a zh�`s���:�7<��L �����by�`�W�l���b���?��u]���w���[c�XO�<�<����6�����[�3���!j���̷+�����*x�&"P'�E�Ee�}��p�i8��G�4��&��5�hpP��jq}�����u�}��4�o4B�N�OK���P�o�F��6H�&"�Z��5�9�!��S�� - m�FSTa!��ݍ�~�V��a>h�.*%Ulm� - ����Ĉ��]�������Mv2�����XA���u^w1躹�[V[��D���SO�!z��!k7c�`vldz�(����7C��>L��6⏼TtY�S�9���7��Di��w����^;�ڡ��K�>$��S(�z��`��d�"�>o?�Z��yx���(� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/06/812cb4109b0b236b9659c570458842e39c6416 and ./wordpress-3.4.1/.git/objects/06/812cb4109b0b236b9659c570458842e39c6416 differ Binary files ./wordpress-3.4/.git/objects/06/949bfe09141df31fede0a4367145bb8f8bdfd6 and ./wordpress-3.4.1/.git/objects/06/949bfe09141df31fede0a4367145bb8f8bdfd6 differ Binary files ./wordpress-3.4/.git/objects/06/d5a3f9a2671dd4c03d278d8302ac4660608838 and ./wordpress-3.4.1/.git/objects/06/d5a3f9a2671dd4c03d278d8302ac4660608838 differ Binary files ./wordpress-3.4/.git/objects/06/e47507be221d742765f0463ce7f3fc9cd9f945 and ./wordpress-3.4.1/.git/objects/06/e47507be221d742765f0463ce7f3fc9cd9f945 differ Binary files ./wordpress-3.4/.git/objects/06/f53c796062152924d6ce4127fc9d35f1b86e57 and ./wordpress-3.4.1/.git/objects/06/f53c796062152924d6ce4127fc9d35f1b86e57 differ Binary files ./wordpress-3.4/.git/objects/07/3044d4c21021c0cd1e0aebae5e5a44a977a173 and ./wordpress-3.4.1/.git/objects/07/3044d4c21021c0cd1e0aebae5e5a44a977a173 differ Binary files ./wordpress-3.4/.git/objects/07/92e1fef5b7c1b496b98be2137be070790cbaa1 and ./wordpress-3.4.1/.git/objects/07/92e1fef5b7c1b496b98be2137be070790cbaa1 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/08/0d74d7c5a3aa64d0a6e71951c57d6762f80a7a ./wordpress-3.4.1/.git/objects/08/0d74d7c5a3aa64d0a6e71951c57d6762f80a7a *** ./wordpress-3.4/.git/objects/08/0d74d7c5a3aa64d0a6e71951c57d6762f80a7a 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/08/0d74d7c5a3aa64d0a6e71951c57d6762f80a7a 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - x��MK1�=�W�m�K͂�^tK��C>��M�L�ߤ��wޏG�^�bq{u��뻎A;�6"|�}�a��N�;��:��#�aʔ�� - !��l�v��ki&�z{Ҩϧ.^��:J( /�j~4"j�� _� �����RV��P�-�(+Y����K���-(I�䄭��˳�94e�)�O�fw,�!ۈ�;�������K��/��q, \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/08/f21720299cdd39dbe340e99bb37195645a7da8 and ./wordpress-3.4.1/.git/objects/08/f21720299cdd39dbe340e99bb37195645a7da8 differ Binary files ./wordpress-3.4/.git/objects/09/097fdccf3b071dc762e306872e6be16123504c and ./wordpress-3.4.1/.git/objects/09/097fdccf3b071dc762e306872e6be16123504c differ Binary files ./wordpress-3.4/.git/objects/09/4e741ca8d5bd5f74a94542411cec6de9e91a92 and ./wordpress-3.4.1/.git/objects/09/4e741ca8d5bd5f74a94542411cec6de9e91a92 differ Binary files ./wordpress-3.4/.git/objects/09/ff3948d7b06ee1f597fa1ea5e258289ae71a04 and ./wordpress-3.4.1/.git/objects/09/ff3948d7b06ee1f597fa1ea5e258289ae71a04 differ Binary files ./wordpress-3.4/.git/objects/0a/1dbf32adac2b9882996d3b04481c347fde31bb and ./wordpress-3.4.1/.git/objects/0a/1dbf32adac2b9882996d3b04481c347fde31bb differ Binary files ./wordpress-3.4/.git/objects/0a/631d61dddc8998aba660d8e30b37005dcaecf7 and ./wordpress-3.4.1/.git/objects/0a/631d61dddc8998aba660d8e30b37005dcaecf7 differ Binary files ./wordpress-3.4/.git/objects/0a/f3c1215e7ead9eb64e5fb9708bd10cf29efd7f and ./wordpress-3.4.1/.git/objects/0a/f3c1215e7ead9eb64e5fb9708bd10cf29efd7f differ Binary files ./wordpress-3.4/.git/objects/0b/1df6078178d444bda0ec798d6760cd74bfada2 and ./wordpress-3.4.1/.git/objects/0b/1df6078178d444bda0ec798d6760cd74bfada2 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/0b/2cfd26f4b8c9ff93a508761576593313e99a5e ./wordpress-3.4.1/.git/objects/0b/2cfd26f4b8c9ff93a508761576593313e99a5e *** ./wordpress-3.4/.git/objects/0b/2cfd26f4b8c9ff93a508761576593313e99a5e 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/0b/2cfd26f4b8c9ff93a508761576593313e99a5e 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - xU��N�0���NM"�Pz�?7��q��zKWM��v����qwg��0ʀ��b{A�]����qƔ(�S>K<º{N9�����QiU?�;�»D�)�y��a9�Nc�ę��w��^�2��R�"���?�I$Wx��H�G2Rb�t?�ӥ� - �R�G�+p2��۴h��9��bL��vB�B���^2��a$�K����$�ק\Syς���ea \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/0b/448aa4b628184535079217a67b1b10f135d4e3 and ./wordpress-3.4.1/.git/objects/0b/448aa4b628184535079217a67b1b10f135d4e3 differ Binary files ./wordpress-3.4/.git/objects/0b/718c43540b7c92f95b3f81754e4cf0f950bc71 and ./wordpress-3.4.1/.git/objects/0b/718c43540b7c92f95b3f81754e4cf0f950bc71 differ Binary files ./wordpress-3.4/.git/objects/0b/93a89b9a0f089342cecaf4deaef48382523d03 and ./wordpress-3.4.1/.git/objects/0b/93a89b9a0f089342cecaf4deaef48382523d03 differ Binary files ./wordpress-3.4/.git/objects/0b/cfada4ba0ea30ab8a5bb39ae70e01ee34d5b37 and ./wordpress-3.4.1/.git/objects/0b/cfada4ba0ea30ab8a5bb39ae70e01ee34d5b37 differ Binary files ./wordpress-3.4/.git/objects/0b/dcc5ec972638073e627ef3e06233660afa15df and ./wordpress-3.4.1/.git/objects/0b/dcc5ec972638073e627ef3e06233660afa15df differ Binary files ./wordpress-3.4/.git/objects/0c/3ccb3cac8a5d8b0a84c431062f3885931e26cb and ./wordpress-3.4.1/.git/objects/0c/3ccb3cac8a5d8b0a84c431062f3885931e26cb differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/0c/49e06983f1fff4bc0834b4d86ce39b8a36a914 ./wordpress-3.4.1/.git/objects/0c/49e06983f1fff4bc0834b4d86ce39b8a36a914 *** ./wordpress-3.4/.git/objects/0c/49e06983f1fff4bc0834b4d86ce39b8a36a914 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/0c/49e06983f1fff4bc0834b4d86ce39b8a36a914 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - xK��OR047dp�t��L�g�g�������+�s�O2�������������������OF���� ��Ysg\�zNR\���i�����:���e��f�eq�ͷo�*`>��vJ�8��$Ƙ�_��,So-��/E�����F��no�ڎ�ف�y�u�s��=� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/0c/5928c6a9658db8120b67736e510af5555379c5 and ./wordpress-3.4.1/.git/objects/0c/5928c6a9658db8120b67736e510af5555379c5 differ Binary files ./wordpress-3.4/.git/objects/0d/0f641a4bc6a67e8cf5dcc428a6abe1bd2a388b and ./wordpress-3.4.1/.git/objects/0d/0f641a4bc6a67e8cf5dcc428a6abe1bd2a388b differ Binary files ./wordpress-3.4/.git/objects/0d/1dc7adaddcae26915f927c0a6bd6a435ad9ad8 and ./wordpress-3.4.1/.git/objects/0d/1dc7adaddcae26915f927c0a6bd6a435ad9ad8 differ Binary files ./wordpress-3.4/.git/objects/0d/6209e2583e7d29e69ae42b8d250af7b5860b2c and ./wordpress-3.4.1/.git/objects/0d/6209e2583e7d29e69ae42b8d250af7b5860b2c differ Binary files ./wordpress-3.4/.git/objects/0d/7cc6eb97d114e3030494c36019d291e8ad5b7f and ./wordpress-3.4.1/.git/objects/0d/7cc6eb97d114e3030494c36019d291e8ad5b7f differ Binary files ./wordpress-3.4/.git/objects/0d/94937685907c0a010989f29f1feedbbe0058e8 and ./wordpress-3.4.1/.git/objects/0d/94937685907c0a010989f29f1feedbbe0058e8 differ Binary files ./wordpress-3.4/.git/objects/0d/abf63b7ec1fd28e5cba3a7bbee98c75be42bde and ./wordpress-3.4.1/.git/objects/0d/abf63b7ec1fd28e5cba3a7bbee98c75be42bde differ Binary files ./wordpress-3.4/.git/objects/0d/b27183f4ec5d4badb1747bf404c6e98455f5e9 and ./wordpress-3.4.1/.git/objects/0d/b27183f4ec5d4badb1747bf404c6e98455f5e9 differ Binary files ./wordpress-3.4/.git/objects/0e/3d1c4c1393ee48b915ced06ed3ba375ee4f53f and ./wordpress-3.4.1/.git/objects/0e/3d1c4c1393ee48b915ced06ed3ba375ee4f53f differ Binary files ./wordpress-3.4/.git/objects/0e/7e227b968401064f4015745187ecbe725af4a6 and ./wordpress-3.4.1/.git/objects/0e/7e227b968401064f4015745187ecbe725af4a6 differ Binary files ./wordpress-3.4/.git/objects/0e/987edef41f4aff606de979f3029a647a2df76c and ./wordpress-3.4.1/.git/objects/0e/987edef41f4aff606de979f3029a647a2df76c differ Binary files ./wordpress-3.4/.git/objects/0e/9f702357af08317c8ed327c638496ea606b474 and ./wordpress-3.4.1/.git/objects/0e/9f702357af08317c8ed327c638496ea606b474 differ Binary files ./wordpress-3.4/.git/objects/0e/a764783f3c3dc4542e6d4eca90b642ef9ab503 and ./wordpress-3.4.1/.git/objects/0e/a764783f3c3dc4542e6d4eca90b642ef9ab503 differ Binary files ./wordpress-3.4/.git/objects/0e/bc4f3fcecc800a67a4809b4f67fc62de34f1e5 and ./wordpress-3.4.1/.git/objects/0e/bc4f3fcecc800a67a4809b4f67fc62de34f1e5 differ Binary files ./wordpress-3.4/.git/objects/0f/06c7f171be0f2c4beb0109e653dbaf89568867 and ./wordpress-3.4.1/.git/objects/0f/06c7f171be0f2c4beb0109e653dbaf89568867 differ Binary files ./wordpress-3.4/.git/objects/0f/07a93785dbf34daba8af50f40dab0930b6e2a8 and ./wordpress-3.4.1/.git/objects/0f/07a93785dbf34daba8af50f40dab0930b6e2a8 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/0f/0857181f79555d793bef90e4f52fd46fe19b45 ./wordpress-3.4.1/.git/objects/0f/0857181f79555d793bef90e4f52fd46fe19b45 *** ./wordpress-3.4/.git/objects/0f/0857181f79555d793bef90e4f52fd46fe19b45 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/0f/0857181f79555d793bef90e4f52fd46fe19b45 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,3 **** - x�SM��0��w�I��.K��N{�q�ЅJ1�=k�ʲ�����%g�M����7�C�����W|7���kkxl����@�k'���G���$��bC��� ���A�֛��Ak��=�υ�j7��Q���B��p���T���'{m!��%�$��rnX���:C�K%��s�OBs($?���'XB2�"Dj����� - E��G�u[��Z�1�J k�8d�N�`z�y\�ݠHF�>�g\@=j�ɪ�!Z1���V���N����䩅�ZyD{��Sg{w%�I�0.u�D�i����2Lb�%��;����|�����YĒ݈�f�q�����l��-L㼁�g�Q<�f�t֡��^�/���6�:4�:�z#��yV}#5mR��Ղ�߱L�/��pxԵ|�B��`~��(��-\�i - ��W6�iZ�3w�/�� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/0f/d55721290569ecf3efbab33664b4df9baeec1e and ./wordpress-3.4.1/.git/objects/0f/d55721290569ecf3efbab33664b4df9baeec1e differ Binary files ./wordpress-3.4/.git/objects/10/0ba2c6d19b14cf3eaae92aa4a667942c59034f and ./wordpress-3.4.1/.git/objects/10/0ba2c6d19b14cf3eaae92aa4a667942c59034f differ Binary files ./wordpress-3.4/.git/objects/10/0d02302583664abff924259a2a94095b8ff5b6 and ./wordpress-3.4.1/.git/objects/10/0d02302583664abff924259a2a94095b8ff5b6 differ Binary files ./wordpress-3.4/.git/objects/11/5ab71506fa63ef9d64f34aa4fb30c0becbdbcc and ./wordpress-3.4.1/.git/objects/11/5ab71506fa63ef9d64f34aa4fb30c0becbdbcc differ Binary files ./wordpress-3.4/.git/objects/11/9350fc3abe01785061fbbc3db359a4acc1c4a4 and ./wordpress-3.4.1/.git/objects/11/9350fc3abe01785061fbbc3db359a4acc1c4a4 differ Binary files ./wordpress-3.4/.git/objects/11/e456fe406f04d977636fba0571fcbd6fbaf841 and ./wordpress-3.4.1/.git/objects/11/e456fe406f04d977636fba0571fcbd6fbaf841 differ Binary files ./wordpress-3.4/.git/objects/12/280304721c792c4eb9888d981f2d21ccaf3437 and ./wordpress-3.4.1/.git/objects/12/280304721c792c4eb9888d981f2d21ccaf3437 differ Binary files ./wordpress-3.4/.git/objects/12/4156206a0fc2c5c5e10ddb73b020a0e0e3908d and ./wordpress-3.4.1/.git/objects/12/4156206a0fc2c5c5e10ddb73b020a0e0e3908d differ Binary files ./wordpress-3.4/.git/objects/13/304ce2d880ebb05671cef76838c067a270b563 and ./wordpress-3.4.1/.git/objects/13/304ce2d880ebb05671cef76838c067a270b563 differ Binary files ./wordpress-3.4/.git/objects/13/390e22954c58a6b1dcf72733e80e1e7480057f and ./wordpress-3.4.1/.git/objects/13/390e22954c58a6b1dcf72733e80e1e7480057f differ Binary files ./wordpress-3.4/.git/objects/13/430d395349493e2333d79a67e7c8039e114393 and ./wordpress-3.4.1/.git/objects/13/430d395349493e2333d79a67e7c8039e114393 differ Binary files ./wordpress-3.4/.git/objects/13/6683987790413cd5dfc4150c26c4400e93ada6 and ./wordpress-3.4.1/.git/objects/13/6683987790413cd5dfc4150c26c4400e93ada6 differ Binary files ./wordpress-3.4/.git/objects/13/808d14eee1530df62375385f21d32c197e79ad and ./wordpress-3.4.1/.git/objects/13/808d14eee1530df62375385f21d32c197e79ad differ Binary files ./wordpress-3.4/.git/objects/13/9fd9e3eed216df1959d484f743642ab56ce09b and ./wordpress-3.4.1/.git/objects/13/9fd9e3eed216df1959d484f743642ab56ce09b differ Binary files ./wordpress-3.4/.git/objects/13/a5cb03097c004f7b37658654a9250748cf073c and ./wordpress-3.4.1/.git/objects/13/a5cb03097c004f7b37658654a9250748cf073c differ Binary files ./wordpress-3.4/.git/objects/13/f3fa64dd7aee3835861516bd4a5e51de297ac7 and ./wordpress-3.4.1/.git/objects/13/f3fa64dd7aee3835861516bd4a5e51de297ac7 differ Binary files ./wordpress-3.4/.git/objects/14/cadfa6f7afe8064537be69a3fdf0fb640a4cfe and ./wordpress-3.4.1/.git/objects/14/cadfa6f7afe8064537be69a3fdf0fb640a4cfe differ Binary files ./wordpress-3.4/.git/objects/14/da4b8236a60b63b92b982d04ccb637e8df22aa and ./wordpress-3.4.1/.git/objects/14/da4b8236a60b63b92b982d04ccb637e8df22aa differ Binary files ./wordpress-3.4/.git/objects/14/ed2ab4f1a2fcce547e62b0ee92a0f6846ca508 and ./wordpress-3.4.1/.git/objects/14/ed2ab4f1a2fcce547e62b0ee92a0f6846ca508 differ Binary files ./wordpress-3.4/.git/objects/14/f94fbed7c863d98df9c59e0ceec408607b917e and ./wordpress-3.4.1/.git/objects/14/f94fbed7c863d98df9c59e0ceec408607b917e differ Binary files ./wordpress-3.4/.git/objects/15/02f70983a1a5226b434f3a3b5828c64728ae36 and ./wordpress-3.4.1/.git/objects/15/02f70983a1a5226b434f3a3b5828c64728ae36 differ Binary files ./wordpress-3.4/.git/objects/15/3091519110c1f41ca6a228cd82feff812827fa and ./wordpress-3.4.1/.git/objects/15/3091519110c1f41ca6a228cd82feff812827fa differ Binary files ./wordpress-3.4/.git/objects/15/76592de003088fff484b95c30c906c062fa1a5 and ./wordpress-3.4.1/.git/objects/15/76592de003088fff484b95c30c906c062fa1a5 differ Binary files ./wordpress-3.4/.git/objects/15/b149acee45a90f62bc59f895fef0fb91a3e505 and ./wordpress-3.4.1/.git/objects/15/b149acee45a90f62bc59f895fef0fb91a3e505 differ Binary files ./wordpress-3.4/.git/objects/15/c6dbca68ba56e5862fc38d2fd74e29aa699744 and ./wordpress-3.4.1/.git/objects/15/c6dbca68ba56e5862fc38d2fd74e29aa699744 differ Binary files ./wordpress-3.4/.git/objects/15/d4323876a0b351ca664591564b260d2220c828 and ./wordpress-3.4.1/.git/objects/15/d4323876a0b351ca664591564b260d2220c828 differ Binary files ./wordpress-3.4/.git/objects/16/357de52242423234ed418d4e53a394c23640ee and ./wordpress-3.4.1/.git/objects/16/357de52242423234ed418d4e53a394c23640ee differ Binary files ./wordpress-3.4/.git/objects/16/57f7fbc4bdfe274713a6027a7acb46c286fb4c and ./wordpress-3.4.1/.git/objects/16/57f7fbc4bdfe274713a6027a7acb46c286fb4c differ Binary files ./wordpress-3.4/.git/objects/16/952d03c86125ab7e54bcd6a26bc41fa21f874b and ./wordpress-3.4.1/.git/objects/16/952d03c86125ab7e54bcd6a26bc41fa21f874b differ Binary files ./wordpress-3.4/.git/objects/17/13f371e7966590bbdcab1b64301d5f5f362b03 and ./wordpress-3.4.1/.git/objects/17/13f371e7966590bbdcab1b64301d5f5f362b03 differ Binary files ./wordpress-3.4/.git/objects/17/283d01a9186b587bce76b76e7fb25d992a5a50 and ./wordpress-3.4.1/.git/objects/17/283d01a9186b587bce76b76e7fb25d992a5a50 differ Binary files ./wordpress-3.4/.git/objects/17/3401ba5f118eab4be853d9fffc15c5bf88e677 and ./wordpress-3.4.1/.git/objects/17/3401ba5f118eab4be853d9fffc15c5bf88e677 differ Binary files ./wordpress-3.4/.git/objects/17/34a8a4cc39322735d40ad5c5c41d0611774eb2 and ./wordpress-3.4.1/.git/objects/17/34a8a4cc39322735d40ad5c5c41d0611774eb2 differ Binary files ./wordpress-3.4/.git/objects/17/9bfb8fc597cb1ff52b5466b017a36629ffe2b7 and ./wordpress-3.4.1/.git/objects/17/9bfb8fc597cb1ff52b5466b017a36629ffe2b7 differ Binary files ./wordpress-3.4/.git/objects/17/a8229aa65897086cca43c10a9dac5fb0384a00 and ./wordpress-3.4.1/.git/objects/17/a8229aa65897086cca43c10a9dac5fb0384a00 differ Binary files ./wordpress-3.4/.git/objects/17/c2eee3165e8fb13ecb9078a95a5454a5a9aa18 and ./wordpress-3.4.1/.git/objects/17/c2eee3165e8fb13ecb9078a95a5454a5a9aa18 differ Binary files ./wordpress-3.4/.git/objects/17/f8e8dd5dd61f117ad91cff396ad324d772f477 and ./wordpress-3.4.1/.git/objects/17/f8e8dd5dd61f117ad91cff396ad324d772f477 differ Binary files ./wordpress-3.4/.git/objects/18/37b0acbe16906b8643f1ded1a32f5b05d64e36 and ./wordpress-3.4.1/.git/objects/18/37b0acbe16906b8643f1ded1a32f5b05d64e36 differ Binary files ./wordpress-3.4/.git/objects/18/38d2f02eba35c093670062d6dac77e3684cabe and ./wordpress-3.4.1/.git/objects/18/38d2f02eba35c093670062d6dac77e3684cabe differ Binary files ./wordpress-3.4/.git/objects/18/4969b07c028619f052771e6d6b4ddd9b884fd6 and ./wordpress-3.4.1/.git/objects/18/4969b07c028619f052771e6d6b4ddd9b884fd6 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/18/52fd91a4cfaaa8a2f6606698a7628ec36d6a22 ./wordpress-3.4.1/.git/objects/18/52fd91a4cfaaa8a2f6606698a7628ec36d6a22 *** ./wordpress-3.4/.git/objects/18/52fd91a4cfaaa8a2f6606698a7628ec36d6a22 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/18/52fd91a4cfaaa8a2f6606698a7628ec36d6a22 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - x��As�0�{5�B��2�m��2�z�� ���H�7��^I �9�1b��{�E�T���m>�\5���FpՐ�wU EX�(y�V����A�S�U�fk��51�1V��x�^�%��(���PV�֡z�VR��s�N]!*�r�)�t��Y���j���{*��;�b�˙`emJh�ȓX�qe`��&�ƖM��ؿ|^F5�Ah���Ƅ��J�m���Ĺ^@��no"rC�k��j�{s;�?�h>V\� �C ΅�QX������Nd[@�)���3)Iȗ��?���i����!eZ��<7P��ΕT:%ל��+ �H�Q���r�R��������B�$-BГ����'�q�o.� |+���?���94�?�k�0~���W(z��c�@[�@+џ���`:Cf8m%�R�N�|�l���?jV����i�2�����x�V�2 e39)��2m���YN�OJ.#�Ƥ�J��p�[~���t \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/18/de01f73f8cef3e23ccdbd317170dbdc69bed2c and ./wordpress-3.4.1/.git/objects/18/de01f73f8cef3e23ccdbd317170dbdc69bed2c differ Binary files ./wordpress-3.4/.git/objects/18/e781179f62ccbf3b30d07b2b057a472f3a9863 and ./wordpress-3.4.1/.git/objects/18/e781179f62ccbf3b30d07b2b057a472f3a9863 differ Binary files ./wordpress-3.4/.git/objects/19/011948bbb693b979585bf9654a6c84964a3628 and ./wordpress-3.4.1/.git/objects/19/011948bbb693b979585bf9654a6c84964a3628 differ Binary files ./wordpress-3.4/.git/objects/19/4e00f54489aac29b19661e83c258ca2c0ffdba and ./wordpress-3.4.1/.git/objects/19/4e00f54489aac29b19661e83c258ca2c0ffdba differ Binary files ./wordpress-3.4/.git/objects/19/726961e7b6f6a7cdfb1e02f20e7fc4a38ebcc1 and ./wordpress-3.4.1/.git/objects/19/726961e7b6f6a7cdfb1e02f20e7fc4a38ebcc1 differ Binary files ./wordpress-3.4/.git/objects/19/9817244219193f45b6f45d1c0aa24de9fb8aa6 and ./wordpress-3.4.1/.git/objects/19/9817244219193f45b6f45d1c0aa24de9fb8aa6 differ Binary files ./wordpress-3.4/.git/objects/19/a245fadcf8082f1521e8159331298735e9a726 and ./wordpress-3.4.1/.git/objects/19/a245fadcf8082f1521e8159331298735e9a726 differ Binary files ./wordpress-3.4/.git/objects/19/ac828adb368100f522c5dde2b37f2054687f78 and ./wordpress-3.4.1/.git/objects/19/ac828adb368100f522c5dde2b37f2054687f78 differ Binary files ./wordpress-3.4/.git/objects/19/f8838e22132bc6b7af356dbc96a7f9193b2733 and ./wordpress-3.4.1/.git/objects/19/f8838e22132bc6b7af356dbc96a7f9193b2733 differ Binary files ./wordpress-3.4/.git/objects/1a/0b34bf2801bc79ce9009c7bcb8308d31683e0b and ./wordpress-3.4.1/.git/objects/1a/0b34bf2801bc79ce9009c7bcb8308d31683e0b differ Binary files ./wordpress-3.4/.git/objects/1a/285a2a9a1371a2feeae561b7511e26bf344608 and ./wordpress-3.4.1/.git/objects/1a/285a2a9a1371a2feeae561b7511e26bf344608 differ Binary files ./wordpress-3.4/.git/objects/1a/353d2e99dd7fb8a4488bb09f92e2be2fea9fb2 and ./wordpress-3.4.1/.git/objects/1a/353d2e99dd7fb8a4488bb09f92e2be2fea9fb2 differ Binary files ./wordpress-3.4/.git/objects/1a/430195f0097412b1c54a1bd9483e2e49af9b31 and ./wordpress-3.4.1/.git/objects/1a/430195f0097412b1c54a1bd9483e2e49af9b31 differ Binary files ./wordpress-3.4/.git/objects/1a/5504236fc729c691731f1f9d065cfc43d40426 and ./wordpress-3.4.1/.git/objects/1a/5504236fc729c691731f1f9d065cfc43d40426 differ Binary files ./wordpress-3.4/.git/objects/1a/8d5b7e27125ea93c74e2d1ffcc3b15fb2a0f56 and ./wordpress-3.4.1/.git/objects/1a/8d5b7e27125ea93c74e2d1ffcc3b15fb2a0f56 differ Binary files ./wordpress-3.4/.git/objects/1a/901667d3de0dd2c9ad1496d8533dd4c7aab365 and ./wordpress-3.4.1/.git/objects/1a/901667d3de0dd2c9ad1496d8533dd4c7aab365 differ Binary files ./wordpress-3.4/.git/objects/1a/933edf59ddc5cd72a4f0cfd092260146740ab5 and ./wordpress-3.4.1/.git/objects/1a/933edf59ddc5cd72a4f0cfd092260146740ab5 differ Binary files ./wordpress-3.4/.git/objects/1a/cad9cf4de9f37f68a8c921807ec3dcd315c61d and ./wordpress-3.4.1/.git/objects/1a/cad9cf4de9f37f68a8c921807ec3dcd315c61d differ Binary files ./wordpress-3.4/.git/objects/1a/e3e870ebf4243745d12235373d27ff311b07c7 and ./wordpress-3.4.1/.git/objects/1a/e3e870ebf4243745d12235373d27ff311b07c7 differ Binary files ./wordpress-3.4/.git/objects/1b/1830f41f8b03a941875c47876a30f975acb1de and ./wordpress-3.4.1/.git/objects/1b/1830f41f8b03a941875c47876a30f975acb1de differ Binary files ./wordpress-3.4/.git/objects/1b/23dad80f0cfb129599fe99b259cb67c3670368 and ./wordpress-3.4.1/.git/objects/1b/23dad80f0cfb129599fe99b259cb67c3670368 differ Binary files ./wordpress-3.4/.git/objects/1b/3e8c933896748601e83fde4b55dafdf2dd7c82 and ./wordpress-3.4.1/.git/objects/1b/3e8c933896748601e83fde4b55dafdf2dd7c82 differ Binary files ./wordpress-3.4/.git/objects/1b/860d2766df8cca052a2c816279be6cd20af7d3 and ./wordpress-3.4.1/.git/objects/1b/860d2766df8cca052a2c816279be6cd20af7d3 differ Binary files ./wordpress-3.4/.git/objects/1b/a21e3ce3d772a542c80a3f57097e723c7a1ed6 and ./wordpress-3.4.1/.git/objects/1b/a21e3ce3d772a542c80a3f57097e723c7a1ed6 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/1b/d68c3735b61e6354272293a2169108c4d26632 ./wordpress-3.4.1/.git/objects/1b/d68c3735b61e6354272293a2169108c4d26632 *** ./wordpress-3.4/.git/objects/1b/d68c3735b61e6354272293a2169108c4d26632 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/1b/d68c3735b61e6354272293a2169108c4d26632 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - xe�=�0�qW��Z,u��/���s҄�+�-�w���]�<�m�֛�ȴ:`'�T�LpJ��-� ��<\����i�ZiUKl�ZYv���[S�C�\ �u�I�d7���%�^[Nb��3�)1����T��oo�sc�"R^{�L���SM \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/1b/dd3a63dd0eeb096578f6decaaa805fe76e5a41 and ./wordpress-3.4.1/.git/objects/1b/dd3a63dd0eeb096578f6decaaa805fe76e5a41 differ Binary files ./wordpress-3.4/.git/objects/1c/014d9c7ca72fbfe6a21efd9851ce0a85a787cb and ./wordpress-3.4.1/.git/objects/1c/014d9c7ca72fbfe6a21efd9851ce0a85a787cb differ Binary files ./wordpress-3.4/.git/objects/1c/ea78ac2ba02c5e429b4128c2cdf0ecc4058b20 and ./wordpress-3.4.1/.git/objects/1c/ea78ac2ba02c5e429b4128c2cdf0ecc4058b20 differ Binary files ./wordpress-3.4/.git/objects/1d/db70f01816a72b2141062b6bca0f29b9f5cd03 and ./wordpress-3.4.1/.git/objects/1d/db70f01816a72b2141062b6bca0f29b9f5cd03 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/1d/de4aa3efae976df4686246a2ce873c08e1dbed ./wordpress-3.4.1/.git/objects/1d/de4aa3efae976df4686246a2ce873c08e1dbed *** ./wordpress-3.4/.git/objects/1d/de4aa3efae976df4686246a2ce873c08e1dbed 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/1d/de4aa3efae976df4686246a2ce873c08e1dbed 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,5 **** - x�V�n�8���Y�� �� - 4q��,6h�%QQ�Hڎ��w��,9��^z�\b���7��,�.�Ç�oۦgWWc�����Ժ�0���d{�P+ɡ�֥x{s��"p��0E��R+ǕK��ia�\{�e���s�Ӧj �6�f��_~ Uqc��2�l-_#Z��'��� h%�q4��3*L�W",�LA�Ao�1��8((!}%kna'\��I)ץ�Բ�[q���|�zh�OvStO;�`�?qf�*9�A�A�Ioq"\�Ǿ' j�Cö<���/�v���Qy>l~y�b��JlATŶ +�� ��Y�GĊ9��d�cCp?�`S�Bo�d�t�~�\ - �c��?���¶�_\��%��d9��g|+�1���^)Эw����L1_F �pᄓ��E����������a�t�S��C�7��%����I�C I^6�������_B'y���ƻ����nԕ�'���J�E���m��VR�:�"���F^�ZEa��F���>G_�+�Dx��3�Ů�:�[<Xv��G-��5�D��ģ�(,!AE�����ޑ� - �OV;nb/+^8;gJ�8C��&BW���7۸F���č+nK#Z:a>3�A��c�^�d�\[����Ez�� - �E�`���Bh�*����x���І�!��=�]H�d[�9LG�y�h�R���>-���|̈́Ī������X���I��@�1cnſ��1�C1M� z�}���ŀQ�B�ۃW ��9�$��|aOEp�9���2�'��J��ћk���z� HO�Av�F���$d�i��N�o�<׀�/�N�p�0 �z:Э��Mp���~.�H�9|��/:�����=����#2���ӈAo{gz"u�T����#�8!����~ix���CR������O<e�F��Yݖ�v�N��T=5"=�0���Kc:�s�ʣ���R����pN���w����x)�z�ڵ��/U4'�3�~\U��wOW~��ɂ��3%�/��w \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/1d/ffbd5c7b3c6064c0eacc65fc7e0bdf4f90d128 and ./wordpress-3.4.1/.git/objects/1d/ffbd5c7b3c6064c0eacc65fc7e0bdf4f90d128 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/1e/3364ad1b39db3a83b85a2b1227f0301bb69cc8 ./wordpress-3.4.1/.git/objects/1e/3364ad1b39db3a83b85a2b1227f0301bb69cc8 *** ./wordpress-3.4/.git/objects/1e/3364ad1b39db3a83b85a2b1227f0301bb69cc8 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/1e/3364ad1b39db3a83b85a2b1227f0301bb69cc8 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,4 **** - x}�AK1�=ﯘ����ăX�� - ���X���&4��d���$�O����7�7�����գW�h��� - �Yr@ - a�����F���5tJG8h� F[� �)m��3�qB��;�eoܸT($�����r�C��Uܝ�Y�%&���PO^G1^h�oS|�w�p~����f�l��z�L�J<h���n�۶��}m��(�x�[�%]�k�֞4o8!Ϙ��p�F&Հ������L�D�� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/1e/53560e0aa7bb1b9a0373fc2f330acab7d1d51f and ./wordpress-3.4.1/.git/objects/1e/53560e0aa7bb1b9a0373fc2f330acab7d1d51f differ Binary files ./wordpress-3.4/.git/objects/1e/b1872249f5163c948c3a71007c09bac73e3119 and ./wordpress-3.4.1/.git/objects/1e/b1872249f5163c948c3a71007c09bac73e3119 differ Binary files ./wordpress-3.4/.git/objects/1f/22f24182de3b0a3cc5696c594aa121197c39ce and ./wordpress-3.4.1/.git/objects/1f/22f24182de3b0a3cc5696c594aa121197c39ce differ Binary files ./wordpress-3.4/.git/objects/1f/2b92caa2de8d83f165712c476bb91c18d5c4fc and ./wordpress-3.4.1/.git/objects/1f/2b92caa2de8d83f165712c476bb91c18d5c4fc differ Binary files ./wordpress-3.4/.git/objects/1f/5598c694fb6928835cbfe883039d30601d4c98 and ./wordpress-3.4.1/.git/objects/1f/5598c694fb6928835cbfe883039d30601d4c98 differ Binary files ./wordpress-3.4/.git/objects/1f/6c3c2fb401596ec44f4a1189bde2cbc45364aa and ./wordpress-3.4.1/.git/objects/1f/6c3c2fb401596ec44f4a1189bde2cbc45364aa differ Binary files ./wordpress-3.4/.git/objects/1f/9d8288bcd369aec1561e625cf2d87caca62f39 and ./wordpress-3.4.1/.git/objects/1f/9d8288bcd369aec1561e625cf2d87caca62f39 differ Binary files ./wordpress-3.4/.git/objects/1f/c32cf243d3687e4ef43fa26523d9d8fcf9280a and ./wordpress-3.4.1/.git/objects/1f/c32cf243d3687e4ef43fa26523d9d8fcf9280a differ Binary files ./wordpress-3.4/.git/objects/1f/dafec831cf01c33d65edbf70c58dd54d4a3ff2 and ./wordpress-3.4.1/.git/objects/1f/dafec831cf01c33d65edbf70c58dd54d4a3ff2 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/20/154253a4f3fed7ff7fd3ec90f64bc3a001116e ./wordpress-3.4.1/.git/objects/20/154253a4f3fed7ff7fd3ec90f64bc3a001116e *** ./wordpress-3.4/.git/objects/20/154253a4f3fed7ff7fd3ec90f64bc3a001116e 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/20/154253a4f3fed7ff7fd3ec90f64bc3a001116e 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - x�TMo�0�~�{ ��^���^�"Y+�F�l�J��w��Uԛ�y�� e��n���wB<�q��W��g�9�cG�� ��4��Њ�M�E�,̓��͌��b�Sg�qG9�L�S�(�,��i��)z�N����_ �����I�%�s���L��c�z?�u�E�c����9v+V�����W|�N�����w�UaPf�-V���ޱRz�6yV��f�����I�{j�S3 � 2VT,p����/4=�-t�+����P�D8.Bos%��� - ���3A��Pxwl��\���� JL�6��eم����S��s �/y��=�xO;�����xf��O�Z �F�Bc�#��\aG�f:�l��+�?c�$���U�� Ԍ���wv����������i��q����N�Ms��~(��&�g7{��@'�p�J�^�-o�*�ʜ^��j!�_���왽��8E��\V{v�p���ݫ'�P�r�q]�CH��tO��ܟ[����K~���} \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/20/4491451276797bd98f72a6060db02c30606839 and ./wordpress-3.4.1/.git/objects/20/4491451276797bd98f72a6060db02c30606839 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/20/5d02cd2fdc02cddcb028ef0d5819eb9656899a ./wordpress-3.4.1/.git/objects/20/5d02cd2fdc02cddcb028ef0d5819eb9656899a *** ./wordpress-3.4/.git/objects/20/5d02cd2fdc02cddcb028ef0d5819eb9656899a 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/20/5d02cd2fdc02cddcb028ef0d5819eb9656899a 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,6 **** - x�UQo�0�k�W^�(i����-��ItB����&6�V4��w�H)�2i<�����>/J�����O����2n���ʺ�b�U�<jZ���\m/�>��_�p/�9�!|�h����[��b��F�`�`�e2�1�QhL��sKcV�45\l����LrY�����F�EM��/�r���ִj�.E4�_��=,W�����Y'w\��g%7�0�{.��!옐�P���:S`�̒����J�"2��,�ɪ��B����lJ���VG��!a�J - 4�L�0Qi����.�.D���r@�oK�? ���[N��q���غFC�q���5�KC��-��P�WP��pW���wl�SR�v�d��>Zf�@��I��*�t6�� - �L���9ܿ.�mmi=��X�nJ$��ߎ� - ��0y�,�P��^Ԇ����+��`�m�tW - +\�|���$�b0.�ml�BZ�*dwI+4�nJ����Y�.��f����,���=�_a��|[�[��9e���?�;�d���j�Jgdw���ÉsY���LùF�ɳ(�֠��Q����>��\�[�;_�4���k2;��nϴ-h��ݢZc˫D���|v.e�E��K_%��%b��e���q�-J�F�^i��^lm�7�i��e�O�q2J�*=�2�59����u9�v<��c>����C;��8O��^�Ԉ)�K��ٿF^��� - Tn��������B�Y$ \ No newline at end of file --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/20/97708f0b219d1bd752d37a48258fe71be38a37 ./wordpress-3.4.1/.git/objects/20/97708f0b219d1bd752d37a48258fe71be38a37 *** ./wordpress-3.4/.git/objects/20/97708f0b219d1bd752d37a48258fe71be38a37 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/20/97708f0b219d1bd752d37a48258fe71be38a37 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - xm�� - �0D=�+���4�=��_i��i6d7����I��7.�{�;3@&��F�٧0��*��?����2#�Z�w��3Q�*�D(����ǥP�k�Z�������h?9��k���37 \ No newline at end of file --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/20/d9e7128d5168e33be5b8e0f39efdfdcde79517 ./wordpress-3.4.1/.git/objects/20/d9e7128d5168e33be5b8e0f39efdfdcde79517 *** ./wordpress-3.4/.git/objects/20/d9e7128d5168e33be5b8e0f39efdfdcde79517 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/20/d9e7128d5168e33be5b8e0f39efdfdcde79517 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - xK��OR041ap�t��LagX�pƘ���=z����oߞ={�200(�dadg`c��@j�C%vi5�����أ���Š�>{`je�Ku���"95�-���u��l *I,��>���`׃@i�Wk�U�j��\�=�TdC��q>��s��< \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/20/fcf405872ae508097fd4a2650719d50a93cf7d and ./wordpress-3.4.1/.git/objects/20/fcf405872ae508097fd4a2650719d50a93cf7d differ Binary files ./wordpress-3.4/.git/objects/21/46645adde749e93fb2e6298a99b477f1c35d4b and ./wordpress-3.4.1/.git/objects/21/46645adde749e93fb2e6298a99b477f1c35d4b differ Binary files ./wordpress-3.4/.git/objects/21/4ca3696b2a8a10eb6c6c518349763472c358e6 and ./wordpress-3.4.1/.git/objects/21/4ca3696b2a8a10eb6c6c518349763472c358e6 differ Binary files ./wordpress-3.4/.git/objects/21/7ee7b6a56bd74cd4073555bf5841ca466e4a6d and ./wordpress-3.4.1/.git/objects/21/7ee7b6a56bd74cd4073555bf5841ca466e4a6d differ Binary files ./wordpress-3.4/.git/objects/21/881628d221ad6e82820a1545eb9eab0e8273db and ./wordpress-3.4.1/.git/objects/21/881628d221ad6e82820a1545eb9eab0e8273db differ Binary files ./wordpress-3.4/.git/objects/21/8e184d350fd762ddd69933bdb35ec066ee0a88 and ./wordpress-3.4.1/.git/objects/21/8e184d350fd762ddd69933bdb35ec066ee0a88 differ Binary files ./wordpress-3.4/.git/objects/22/039fd4271a2cf5054e55779b4d142b45f15b15 and ./wordpress-3.4.1/.git/objects/22/039fd4271a2cf5054e55779b4d142b45f15b15 differ Binary files ./wordpress-3.4/.git/objects/22/25a5fe1a5ae76fb165238debf311b1d4f94b7b and ./wordpress-3.4.1/.git/objects/22/25a5fe1a5ae76fb165238debf311b1d4f94b7b differ Binary files ./wordpress-3.4/.git/objects/22/36549fc7e17e1800ab343588bb2a359369e862 and ./wordpress-3.4.1/.git/objects/22/36549fc7e17e1800ab343588bb2a359369e862 differ Binary files ./wordpress-3.4/.git/objects/22/4f7c8da356a1eae25daea11a4d1a6db5778e3d and ./wordpress-3.4.1/.git/objects/22/4f7c8da356a1eae25daea11a4d1a6db5778e3d differ Binary files ./wordpress-3.4/.git/objects/22/7fad959f9e4cc8cec1ebcdca359dc6fee66ec1 and ./wordpress-3.4.1/.git/objects/22/7fad959f9e4cc8cec1ebcdca359dc6fee66ec1 differ Binary files ./wordpress-3.4/.git/objects/22/9cec2093203ff303ec978651903244f40464ad and ./wordpress-3.4.1/.git/objects/22/9cec2093203ff303ec978651903244f40464ad differ Binary files ./wordpress-3.4/.git/objects/22/cb1df83c8ce7a8d65a70fb4506f197312eb480 and ./wordpress-3.4.1/.git/objects/22/cb1df83c8ce7a8d65a70fb4506f197312eb480 differ Binary files ./wordpress-3.4/.git/objects/22/dc606613407a1e5a92001d8e3d542c8e8284c9 and ./wordpress-3.4.1/.git/objects/22/dc606613407a1e5a92001d8e3d542c8e8284c9 differ Binary files ./wordpress-3.4/.git/objects/22/ddc39387a6091ef972bd4757c5d7e412d46f95 and ./wordpress-3.4.1/.git/objects/22/ddc39387a6091ef972bd4757c5d7e412d46f95 differ Binary files ./wordpress-3.4/.git/objects/23/40baf4f3b6fea7103b9aeaa6a8769269577915 and ./wordpress-3.4.1/.git/objects/23/40baf4f3b6fea7103b9aeaa6a8769269577915 differ Binary files ./wordpress-3.4/.git/objects/23/7563069fb8d85017d249f548b7c940f51d9551 and ./wordpress-3.4.1/.git/objects/23/7563069fb8d85017d249f548b7c940f51d9551 differ Binary files ./wordpress-3.4/.git/objects/23/b0e43dfe293bbd2a14fb58539bd62e2f309b68 and ./wordpress-3.4.1/.git/objects/23/b0e43dfe293bbd2a14fb58539bd62e2f309b68 differ Binary files ./wordpress-3.4/.git/objects/23/fef64c9a4326f02a3e4953120f451b098ea5fa and ./wordpress-3.4.1/.git/objects/23/fef64c9a4326f02a3e4953120f451b098ea5fa differ Binary files ./wordpress-3.4/.git/objects/24/0fff8a16aa55f97260502c39a06afe17246691 and ./wordpress-3.4.1/.git/objects/24/0fff8a16aa55f97260502c39a06afe17246691 differ Binary files ./wordpress-3.4/.git/objects/24/8897c9877233ba4e4f1e6f0e3278050bf746c8 and ./wordpress-3.4.1/.git/objects/24/8897c9877233ba4e4f1e6f0e3278050bf746c8 differ Binary files ./wordpress-3.4/.git/objects/24/8fe00a14d04291255257853ee34ce0ab12e59c and ./wordpress-3.4.1/.git/objects/24/8fe00a14d04291255257853ee34ce0ab12e59c differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/24/925dc94dbd4fe9c02b9f14b7dcf3194b6db8f4 ./wordpress-3.4.1/.git/objects/24/925dc94dbd4fe9c02b9f14b7dcf3194b6db8f4 *** ./wordpress-3.4/.git/objects/24/925dc94dbd4fe9c02b9f14b7dcf3194b6db8f4 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/24/925dc94dbd4fe9c02b9f14b7dcf3194b6db8f4 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,3 **** - xuR�N�@�~�bPb)�Ę`���v��6w[A��J_������NS�)���/�!��-��5B��}D�8�2V8ʙs����Q�e���O�H�$��H=N`#�� - |��V�DS^Ơq)s��л�o��4U��\Jhi�1��A�bKB��IjYׂ�1M�Un�.U���6�z��(�܀p��`��̃}��i+��Bb���Wsؐ���.i]����rO�9T;�A�+�E%��][��y8.�u�A�����qG=H�#"�s��\#�X��O�S�9<���˟ĸk���{�N����6�C|�_�6�ӈ>Pk��; - �&���V����Ξg�Ÿ�1�5��#�$�j�� 7��H�6��]T�� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/24/b163eba9af2b9ffe65b81999f695da05b4fb96 and ./wordpress-3.4.1/.git/objects/24/b163eba9af2b9ffe65b81999f695da05b4fb96 differ Binary files ./wordpress-3.4/.git/objects/24/e161b7f394a9210e5a0ef859dbb990d181a21d and ./wordpress-3.4.1/.git/objects/24/e161b7f394a9210e5a0ef859dbb990d181a21d differ Binary files ./wordpress-3.4/.git/objects/24/e1a29c8314ecf750a2efbe8cbc1d11a34b4d2a and ./wordpress-3.4.1/.git/objects/24/e1a29c8314ecf750a2efbe8cbc1d11a34b4d2a differ Binary files ./wordpress-3.4/.git/objects/24/efd82f88a30f11f21eb1c17ed43a469a4d6857 and ./wordpress-3.4.1/.git/objects/24/efd82f88a30f11f21eb1c17ed43a469a4d6857 differ Binary files ./wordpress-3.4/.git/objects/25/30876647096709bfe91f4e14ce1f48e0236d12 and ./wordpress-3.4.1/.git/objects/25/30876647096709bfe91f4e14ce1f48e0236d12 differ Binary files ./wordpress-3.4/.git/objects/25/317e5738bfcce43707ec0a0640533f69eb8fff and ./wordpress-3.4.1/.git/objects/25/317e5738bfcce43707ec0a0640533f69eb8fff differ Binary files ./wordpress-3.4/.git/objects/25/6069fc5963f7ed9f2cbd25fc2f6741db1db859 and ./wordpress-3.4.1/.git/objects/25/6069fc5963f7ed9f2cbd25fc2f6741db1db859 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/25/691c866a609aa066366cecf782ea00c69fd990 ./wordpress-3.4.1/.git/objects/25/691c866a609aa066366cecf782ea00c69fd990 *** ./wordpress-3.4/.git/objects/25/691c866a609aa066366cecf782ea00c69fd990 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/25/691c866a609aa066366cecf782ea00c69fd990 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - x�P]K�0�u�w0h:�s��ԩ'T�2��n�I�*�n�1�L�S��|�ܓ�*������^j��v ta�L11h-L-���:ÝP��r���f_i�?�ne��l�6X�B�'I?9s���B"�f6}=����!:g<�)!_�0�T�Q(���B�y�ߍ�cH ��:q.�j���6�*_:a�CC�����`���Ш�7e����o¥䓐Ά�|胭yu ���B'�Ơt,+���Pڃ-P� İZ�4w�?4ͺ��O�u���th,�hO���^�pS�~�N�?����K���)�F�1 \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/25/a849f82294fa6580175d5fdecb7184fa56f66d and ./wordpress-3.4.1/.git/objects/25/a849f82294fa6580175d5fdecb7184fa56f66d differ Binary files ./wordpress-3.4/.git/objects/26/422edc5d7edaafc17e2093ca1dde3fbb176d5c and ./wordpress-3.4.1/.git/objects/26/422edc5d7edaafc17e2093ca1dde3fbb176d5c differ Binary files ./wordpress-3.4/.git/objects/26/577bb98d42234801cd3bb5bef6625df3147ba0 and ./wordpress-3.4.1/.git/objects/26/577bb98d42234801cd3bb5bef6625df3147ba0 differ Binary files ./wordpress-3.4/.git/objects/26/79d8b5782ed81984c32c95f564924bf8886164 and ./wordpress-3.4.1/.git/objects/26/79d8b5782ed81984c32c95f564924bf8886164 differ Binary files ./wordpress-3.4/.git/objects/26/d3325d574895ae56811d9ed903971adf4c69e7 and ./wordpress-3.4.1/.git/objects/26/d3325d574895ae56811d9ed903971adf4c69e7 differ Binary files ./wordpress-3.4/.git/objects/27/168f4048e7257e1807f3d40c30335f1a8f0f13 and ./wordpress-3.4.1/.git/objects/27/168f4048e7257e1807f3d40c30335f1a8f0f13 differ Binary files ./wordpress-3.4/.git/objects/27/2ce3b254d6abc2f7dbd5faee2c63c0dd40c7fb and ./wordpress-3.4.1/.git/objects/27/2ce3b254d6abc2f7dbd5faee2c63c0dd40c7fb differ Binary files ./wordpress-3.4/.git/objects/27/51148de6879ad340006208eb28250474bba8d0 and ./wordpress-3.4.1/.git/objects/27/51148de6879ad340006208eb28250474bba8d0 differ Binary files ./wordpress-3.4/.git/objects/27/58773b1e5c87d17f236aade62cf06990e68fd2 and ./wordpress-3.4.1/.git/objects/27/58773b1e5c87d17f236aade62cf06990e68fd2 differ Binary files ./wordpress-3.4/.git/objects/27/9456936822d7834453475639f5efbaa9fc0b94 and ./wordpress-3.4.1/.git/objects/27/9456936822d7834453475639f5efbaa9fc0b94 differ Binary files ./wordpress-3.4/.git/objects/27/9a75debf98712a6061a0913cde54d30639e2f8 and ./wordpress-3.4.1/.git/objects/27/9a75debf98712a6061a0913cde54d30639e2f8 differ Binary files ./wordpress-3.4/.git/objects/28/036918e0e17cfa72fdccb8a496e3a500d585ed and ./wordpress-3.4.1/.git/objects/28/036918e0e17cfa72fdccb8a496e3a500d585ed differ Binary files ./wordpress-3.4/.git/objects/28/80055cc0f11c60f5688ade044df280856df9a7 and ./wordpress-3.4.1/.git/objects/28/80055cc0f11c60f5688ade044df280856df9a7 differ Binary files ./wordpress-3.4/.git/objects/28/897c18d0a73785ec815cedd94d1407600ab46b and ./wordpress-3.4.1/.git/objects/28/897c18d0a73785ec815cedd94d1407600ab46b differ Binary files ./wordpress-3.4/.git/objects/28/af66b8dd29a990d2140668bee5d4fa8dd8d496 and ./wordpress-3.4.1/.git/objects/28/af66b8dd29a990d2140668bee5d4fa8dd8d496 differ Binary files ./wordpress-3.4/.git/objects/28/fc6bbe60ef1973b78fc273c07af04c5f8d5060 and ./wordpress-3.4.1/.git/objects/28/fc6bbe60ef1973b78fc273c07af04c5f8d5060 differ Binary files ./wordpress-3.4/.git/objects/29/2fd3d0417ac19cd57426c11e8f091f828f8611 and ./wordpress-3.4.1/.git/objects/29/2fd3d0417ac19cd57426c11e8f091f828f8611 differ Binary files ./wordpress-3.4/.git/objects/29/31cbbc82a9dfbdfc210a6de3dba4de33c6f76a and ./wordpress-3.4.1/.git/objects/29/31cbbc82a9dfbdfc210a6de3dba4de33c6f76a differ Binary files ./wordpress-3.4/.git/objects/29/98f9f3a433c0548ce12116d08c86771765bc6f and ./wordpress-3.4.1/.git/objects/29/98f9f3a433c0548ce12116d08c86771765bc6f differ Binary files ./wordpress-3.4/.git/objects/29/da2a2fccc79981bc54db7513ca6d2374592f9d and ./wordpress-3.4.1/.git/objects/29/da2a2fccc79981bc54db7513ca6d2374592f9d differ Binary files ./wordpress-3.4/.git/objects/29/f814d2982a8925ab0ec46d171a2f95239f99f1 and ./wordpress-3.4.1/.git/objects/29/f814d2982a8925ab0ec46d171a2f95239f99f1 differ Binary files ./wordpress-3.4/.git/objects/2a/202ace0fca632847dd6c4a92b2ea6d758ce090 and ./wordpress-3.4.1/.git/objects/2a/202ace0fca632847dd6c4a92b2ea6d758ce090 differ Binary files ./wordpress-3.4/.git/objects/2a/5a6e8ceb3bbeef9993896ee8ed3b787823a1a7 and ./wordpress-3.4.1/.git/objects/2a/5a6e8ceb3bbeef9993896ee8ed3b787823a1a7 differ Binary files ./wordpress-3.4/.git/objects/2a/6f3ad2997a337691aa0df2d55a1c968d2fa6b5 and ./wordpress-3.4.1/.git/objects/2a/6f3ad2997a337691aa0df2d55a1c968d2fa6b5 differ Binary files ./wordpress-3.4/.git/objects/2a/bd79952ffa5788c2412f56482ddae1f475a0a2 and ./wordpress-3.4.1/.git/objects/2a/bd79952ffa5788c2412f56482ddae1f475a0a2 differ Binary files ./wordpress-3.4/.git/objects/2b/4774bcf34b401b97c5832cb3fc78fbf8a392cb and ./wordpress-3.4.1/.git/objects/2b/4774bcf34b401b97c5832cb3fc78fbf8a392cb differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/2b/5319267147220ebd7bd9437ec34af19e001ef3 ./wordpress-3.4.1/.git/objects/2b/5319267147220ebd7bd9437ec34af19e001ef3 *** ./wordpress-3.4/.git/objects/2b/5319267147220ebd7bd9437ec34af19e001ef3 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/2b/5319267147220ebd7bd9437ec34af19e001ef3 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,3 **** - x�R�N�0��~��,�2� i�$����)k�.ЦU� &�'i�MC;qI�b��~��n�p{}sA�ӅU���w�( ��V�Uz�r��j�I+����%J��$��Ib�:�i�| - >���Z��L<<�a>Z�cpS +���s+J4|�3����A�p�B��� 6�πt����3蝔�kx�f�w�B� - s2)�9�Ý��&�C��!v0<Ke[���t��H�����c���4 �J�(6t���]�,%�d�ku��!b��F/6��Yz���߈+/���C�BE�T�'t:���~�^�/����K���.�����E \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/2b/d48c847220525463ba9f3448adadddfe6930c5 and ./wordpress-3.4.1/.git/objects/2b/d48c847220525463ba9f3448adadddfe6930c5 differ Binary files ./wordpress-3.4/.git/objects/2b/f974a26502353772db308819bac9dabe093020 and ./wordpress-3.4.1/.git/objects/2b/f974a26502353772db308819bac9dabe093020 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/2c/0cb874dd20901e18e3b830b9560ab8f7065dfd ./wordpress-3.4.1/.git/objects/2c/0cb874dd20901e18e3b830b9560ab8f7065dfd *** ./wordpress-3.4/.git/objects/2c/0cb874dd20901e18e3b830b9560ab8f7065dfd 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/2c/0cb874dd20901e18e3b830b9560ab8f7065dfd 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,3 **** - x]R���0��<���V��*H4M�� �J#'�$�m�N��=k�+��3�7��2>�||S��l�j�Ͱ�y&�X%a4��ܥ�p��~�W��WĢ/V�8��� �y��~��F:��3�"uOx$�I�w/TY6Qhg���S�e�U=�+�p�{����\�p��<��ጢc~a3"eU�{�Jx���e�AQ�<n���uR�q��]���D��}�EH��6�� - ���(�� �6��z�By�^��CZ���ռ�͞��ǢXre�MrǀB��������F�͂��0�JN10IzH �IŘ.�pf�Yr���(Ez� iv�3w�:���T - a�L��6%�]e�=���><���t�ع�~��5�۲Ļh�����H�5aq�/����h)?�<�oVٮ \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/2c/3470aface56251af2e785e12a2c44b974ad9c4 and ./wordpress-3.4.1/.git/objects/2c/3470aface56251af2e785e12a2c44b974ad9c4 differ Binary files ./wordpress-3.4/.git/objects/2c/83b7a4f3164ed57ab3d3247bcddd3475212893 and ./wordpress-3.4.1/.git/objects/2c/83b7a4f3164ed57ab3d3247bcddd3475212893 differ Binary files ./wordpress-3.4/.git/objects/2c/d93c82100311e785ec7a94299eba3f511e56a7 and ./wordpress-3.4.1/.git/objects/2c/d93c82100311e785ec7a94299eba3f511e56a7 differ Binary files ./wordpress-3.4/.git/objects/2d/3822ca511b8513400c0dc73a122c332d4b7593 and ./wordpress-3.4.1/.git/objects/2d/3822ca511b8513400c0dc73a122c332d4b7593 differ Binary files ./wordpress-3.4/.git/objects/2d/8a7f0d9d28ce42ab1da212c30d80f85d5a5ff7 and ./wordpress-3.4.1/.git/objects/2d/8a7f0d9d28ce42ab1da212c30d80f85d5a5ff7 differ Binary files ./wordpress-3.4/.git/objects/2d/b0345d3738e23db34630b74c1b645327a47b84 and ./wordpress-3.4.1/.git/objects/2d/b0345d3738e23db34630b74c1b645327a47b84 differ Binary files ./wordpress-3.4/.git/objects/2d/c5b7b2e3e3f030e10faf419f3d81732519938b and ./wordpress-3.4.1/.git/objects/2d/c5b7b2e3e3f030e10faf419f3d81732519938b differ Binary files ./wordpress-3.4/.git/objects/2d/ff578e0db2bf85a5cf67471d6102fe85721dc0 and ./wordpress-3.4.1/.git/objects/2d/ff578e0db2bf85a5cf67471d6102fe85721dc0 differ Binary files ./wordpress-3.4/.git/objects/2e/23f8a3feabb751dad6caa78cc8347b97df16e8 and ./wordpress-3.4.1/.git/objects/2e/23f8a3feabb751dad6caa78cc8347b97df16e8 differ Binary files ./wordpress-3.4/.git/objects/2e/433fc3e3d227013516a83c51cfeb267f048d9d and ./wordpress-3.4.1/.git/objects/2e/433fc3e3d227013516a83c51cfeb267f048d9d differ Binary files ./wordpress-3.4/.git/objects/2e/6c93384596bacb78cfa74b1672275b22fae544 and ./wordpress-3.4.1/.git/objects/2e/6c93384596bacb78cfa74b1672275b22fae544 differ Binary files ./wordpress-3.4/.git/objects/2e/9fbd69970f5f0ed1500ed7880b1a06477db887 and ./wordpress-3.4.1/.git/objects/2e/9fbd69970f5f0ed1500ed7880b1a06477db887 differ Binary files ./wordpress-3.4/.git/objects/2e/a4d7b08f929580cbb71332084f058921432b55 and ./wordpress-3.4.1/.git/objects/2e/a4d7b08f929580cbb71332084f058921432b55 differ Binary files ./wordpress-3.4/.git/objects/2e/dbd19fbea7aba6c26a4ea9c6434f475719625e and ./wordpress-3.4.1/.git/objects/2e/dbd19fbea7aba6c26a4ea9c6434f475719625e differ Binary files ./wordpress-3.4/.git/objects/2e/f4ca77e81b0966e4b7a6ba501a52888b56ca44 and ./wordpress-3.4.1/.git/objects/2e/f4ca77e81b0966e4b7a6ba501a52888b56ca44 differ Binary files ./wordpress-3.4/.git/objects/2f/86f0ae6bb797bf29700cb1d0d93e5e30a4e72b and ./wordpress-3.4.1/.git/objects/2f/86f0ae6bb797bf29700cb1d0d93e5e30a4e72b differ Binary files ./wordpress-3.4/.git/objects/2f/ae4c6d9e08f0fa08b8a9e18ec435d78b90adb3 and ./wordpress-3.4.1/.git/objects/2f/ae4c6d9e08f0fa08b8a9e18ec435d78b90adb3 differ Binary files ./wordpress-3.4/.git/objects/2f/e318d9a6305702a7555859acedcec549371534 and ./wordpress-3.4.1/.git/objects/2f/e318d9a6305702a7555859acedcec549371534 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/2f/e5c0f9c7ca304f0e32c40df8c3d0ca17d3fa51 ./wordpress-3.4.1/.git/objects/2f/e5c0f9c7ca304f0e32c40df8c3d0ca17d3fa51 *** ./wordpress-3.4/.git/objects/2f/e5c0f9c7ca304f0e32c40df8c3d0ca17d3fa51 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/2f/e5c0f9c7ca304f0e32c40df8c3d0ca17d3fa51 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,4 **** - x�U]o�0�O�\��W��I�t���MZ���J#c.��`d�&��BH�vS��<��K��pp����'�q�G��X3�q�K��� - Vm��J��ۻȓ�r�a)Y. ��{��A�n�VYv���gA�KƷǔ�ӘF��JPr$����0.�Ք�bċ��vF��a�*E3��%e<�b6a�JDe��� ����ʪ�O�F��X/���j�x�gi��9^\��f��4/J��c��`�9�ˢG,fv�e��$.>� �e�PVcT �� ���k.zh[0�>�L�r�7���rX�����j����e���n�vpUa�7�s�3O4<�e�b�MţXMs�Kh�w�1a��L�v]8���{7ʠ �o�L�%_& ��l\��.�ɹ�۟�W��w���E� - ?�L)%�7�ڒ�����~è�s��BȤ�.l��JP1 YD4�g�U6I o]�n0w��~��k�����5�Bh��f���^�Q�?Bn"�Z�!�*e y��&����:�H��z �זrc�-�k��nûV�`���LH�g���f������CB֮��2ׁ�#�Y����"�)�E�'�T�{�vB���1`� - y�� 7�7�E��V��~�.T���e2�;����w�v����/�����Pk��$�r��I����˝T�=l6�+��yk�V���{��=�����$ d�hM>��#� ��m6"�1~#Onf4"��:��> ��Z���_%�5�}G� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/30/2e16f57c286f116d8ed33a830f20e54e58dde4 and ./wordpress-3.4.1/.git/objects/30/2e16f57c286f116d8ed33a830f20e54e58dde4 differ Binary files ./wordpress-3.4/.git/objects/30/31a059138e85b73440aa6590613081ca6b75af and ./wordpress-3.4.1/.git/objects/30/31a059138e85b73440aa6590613081ca6b75af differ Binary files ./wordpress-3.4/.git/objects/30/f0bc8342daaedfbbdf6ccd644b24359bfffbc3 and ./wordpress-3.4.1/.git/objects/30/f0bc8342daaedfbbdf6ccd644b24359bfffbc3 differ Binary files ./wordpress-3.4/.git/objects/31/14456e097d4da0331f93c02be86d8ca761dae7 and ./wordpress-3.4.1/.git/objects/31/14456e097d4da0331f93c02be86d8ca761dae7 differ Binary files ./wordpress-3.4/.git/objects/31/19eb5720edcc316aea37279a38bea940ac1214 and ./wordpress-3.4.1/.git/objects/31/19eb5720edcc316aea37279a38bea940ac1214 differ Binary files ./wordpress-3.4/.git/objects/31/3ca5d17fd827acdf1be0b05ca6a456152259b8 and ./wordpress-3.4.1/.git/objects/31/3ca5d17fd827acdf1be0b05ca6a456152259b8 differ Binary files ./wordpress-3.4/.git/objects/31/5ab527fa270f2b4ffdc10f7fc80d692a763d03 and ./wordpress-3.4.1/.git/objects/31/5ab527fa270f2b4ffdc10f7fc80d692a763d03 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/31/794ba0d26d9febe3121812f8dea6e22401e55b ./wordpress-3.4.1/.git/objects/31/794ba0d26d9febe3121812f8dea6e22401e55b *** ./wordpress-3.4/.git/objects/31/794ba0d26d9febe3121812f8dea6e22401e55b 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/31/794ba0d26d9febe3121812f8dea6e22401e55b 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - xU���0E��� - �p�� ��l�(i,�(I��I����{��n�/���B���Ά�H�y�嘂J�,xei�R���W�S� �.�K��4f=���K�=v�)�"�;s��+���K,6 �v?^�괦b7�k;X \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/31/8cf3f64df46ae8b366c601d880c7226d1533ec and ./wordpress-3.4.1/.git/objects/31/8cf3f64df46ae8b366c601d880c7226d1533ec differ Binary files ./wordpress-3.4/.git/objects/31/a13ea6d1ae040aaef4ceb86fa34c0876b884a4 and ./wordpress-3.4.1/.git/objects/31/a13ea6d1ae040aaef4ceb86fa34c0876b884a4 differ Binary files ./wordpress-3.4/.git/objects/31/cc4da35512106d4c2fc53c496ce842a7eb2d67 and ./wordpress-3.4.1/.git/objects/31/cc4da35512106d4c2fc53c496ce842a7eb2d67 differ Binary files ./wordpress-3.4/.git/objects/32/362074490f3f016f29c7ef4862a728c8848732 and ./wordpress-3.4.1/.git/objects/32/362074490f3f016f29c7ef4862a728c8848732 differ Binary files ./wordpress-3.4/.git/objects/32/45c9c7db204f19372a77bb10ebefc74b26917a and ./wordpress-3.4.1/.git/objects/32/45c9c7db204f19372a77bb10ebefc74b26917a differ Binary files ./wordpress-3.4/.git/objects/32/8bfcf324ba9f4634d0fbaef41bba607c4e4f99 and ./wordpress-3.4.1/.git/objects/32/8bfcf324ba9f4634d0fbaef41bba607c4e4f99 differ Binary files ./wordpress-3.4/.git/objects/32/95ccd388867461930044c0aa5ce9b7d8ad542d and ./wordpress-3.4.1/.git/objects/32/95ccd388867461930044c0aa5ce9b7d8ad542d differ Binary files ./wordpress-3.4/.git/objects/33/1cc90b0e4e4d0c1e01ead2f9bab6aed61d2e06 and ./wordpress-3.4.1/.git/objects/33/1cc90b0e4e4d0c1e01ead2f9bab6aed61d2e06 differ Binary files ./wordpress-3.4/.git/objects/33/7cc9123dfd4bd85827d0af9e0e1b74e0e01d26 and ./wordpress-3.4.1/.git/objects/33/7cc9123dfd4bd85827d0af9e0e1b74e0e01d26 differ Binary files ./wordpress-3.4/.git/objects/33/897b60994930b9b7216162d5dd3436deb45a13 and ./wordpress-3.4.1/.git/objects/33/897b60994930b9b7216162d5dd3436deb45a13 differ Binary files ./wordpress-3.4/.git/objects/33/9e6e5296ce22f6aebe978f15c847b12d5c5234 and ./wordpress-3.4.1/.git/objects/33/9e6e5296ce22f6aebe978f15c847b12d5c5234 differ Binary files ./wordpress-3.4/.git/objects/33/a0c7157f4b6a90522681bb03da6738bef1598c and ./wordpress-3.4.1/.git/objects/33/a0c7157f4b6a90522681bb03da6738bef1598c differ Binary files ./wordpress-3.4/.git/objects/33/d19d8547050470dfea18c81469816b60807abf and ./wordpress-3.4.1/.git/objects/33/d19d8547050470dfea18c81469816b60807abf differ Binary files ./wordpress-3.4/.git/objects/33/fb7175a04f7600a70d10eaa6472c45fed8fd80 and ./wordpress-3.4.1/.git/objects/33/fb7175a04f7600a70d10eaa6472c45fed8fd80 differ Binary files ./wordpress-3.4/.git/objects/34/273977358352fea0575c2fbc4310fc5205f588 and ./wordpress-3.4.1/.git/objects/34/273977358352fea0575c2fbc4310fc5205f588 differ Binary files ./wordpress-3.4/.git/objects/35/3711ca3958f2ff7b8bd11e9c918a2b3127b0b3 and ./wordpress-3.4.1/.git/objects/35/3711ca3958f2ff7b8bd11e9c918a2b3127b0b3 differ Binary files ./wordpress-3.4/.git/objects/35/4070bb457b3786368a51b065ae75cf27297b09 and ./wordpress-3.4.1/.git/objects/35/4070bb457b3786368a51b065ae75cf27297b09 differ Binary files ./wordpress-3.4/.git/objects/35/70104077a3b3585f11403c8d4c3fc9351f35d2 and ./wordpress-3.4.1/.git/objects/35/70104077a3b3585f11403c8d4c3fc9351f35d2 differ Binary files ./wordpress-3.4/.git/objects/35/9b001c6c50b15281b6455950597c486451a58e and ./wordpress-3.4.1/.git/objects/35/9b001c6c50b15281b6455950597c486451a58e differ Binary files ./wordpress-3.4/.git/objects/35/d35a0d9f6b6374aa03c44eb5bbb95d32585108 and ./wordpress-3.4.1/.git/objects/35/d35a0d9f6b6374aa03c44eb5bbb95d32585108 differ Binary files ./wordpress-3.4/.git/objects/36/0bb91adb8273b55b96eda3639b80e1f996cae1 and ./wordpress-3.4.1/.git/objects/36/0bb91adb8273b55b96eda3639b80e1f996cae1 differ Binary files ./wordpress-3.4/.git/objects/36/1a8de60027d2224aeeeae3731b78b7bbb089bc and ./wordpress-3.4.1/.git/objects/36/1a8de60027d2224aeeeae3731b78b7bbb089bc differ Binary files ./wordpress-3.4/.git/objects/36/31e786fc8e76bc5beb13bab222e6c74b004d8e and ./wordpress-3.4.1/.git/objects/36/31e786fc8e76bc5beb13bab222e6c74b004d8e differ Binary files ./wordpress-3.4/.git/objects/36/44fdde2b15dd2288171b733bf6b42b5d652519 and ./wordpress-3.4.1/.git/objects/36/44fdde2b15dd2288171b733bf6b42b5d652519 differ Binary files ./wordpress-3.4/.git/objects/36/79011ebaea3da32f0146561570f86ef355e45b and ./wordpress-3.4.1/.git/objects/36/79011ebaea3da32f0146561570f86ef355e45b differ Binary files ./wordpress-3.4/.git/objects/36/e871238b608a2ce2d1e074bec06bce5d757103 and ./wordpress-3.4.1/.git/objects/36/e871238b608a2ce2d1e074bec06bce5d757103 differ Binary files ./wordpress-3.4/.git/objects/36/fe63369d5c73cb3f81cebca369af8e50d1a60a and ./wordpress-3.4.1/.git/objects/36/fe63369d5c73cb3f81cebca369af8e50d1a60a differ Binary files ./wordpress-3.4/.git/objects/37/13f18b401103b8307b5642d273897587787293 and ./wordpress-3.4.1/.git/objects/37/13f18b401103b8307b5642d273897587787293 differ Binary files ./wordpress-3.4/.git/objects/37/1a28438d3d0e9319629d5c7301d213e3feae8b and ./wordpress-3.4.1/.git/objects/37/1a28438d3d0e9319629d5c7301d213e3feae8b differ Binary files ./wordpress-3.4/.git/objects/37/4ba150fb238d6a33605bb26e86d4449625a46c and ./wordpress-3.4.1/.git/objects/37/4ba150fb238d6a33605bb26e86d4449625a46c differ Binary files ./wordpress-3.4/.git/objects/37/59c90c19a3ee280cd9e54add1d51720ff59d3d and ./wordpress-3.4.1/.git/objects/37/59c90c19a3ee280cd9e54add1d51720ff59d3d differ Binary files ./wordpress-3.4/.git/objects/37/9211058e7392fb7b3bd74dea6cc36938052f65 and ./wordpress-3.4.1/.git/objects/37/9211058e7392fb7b3bd74dea6cc36938052f65 differ Binary files ./wordpress-3.4/.git/objects/37/b4320bd9faaafecacd72709810bff010f4e9e4 and ./wordpress-3.4.1/.git/objects/37/b4320bd9faaafecacd72709810bff010f4e9e4 differ Binary files ./wordpress-3.4/.git/objects/37/d73f19b220eb13c49f9047d66ce306137647af and ./wordpress-3.4.1/.git/objects/37/d73f19b220eb13c49f9047d66ce306137647af differ Binary files ./wordpress-3.4/.git/objects/38/069d1974b794bd79235a45d86814cff98aae0c and ./wordpress-3.4.1/.git/objects/38/069d1974b794bd79235a45d86814cff98aae0c differ Binary files ./wordpress-3.4/.git/objects/38/1db83c50c993bf657264d38f4f81cd44fd176b and ./wordpress-3.4.1/.git/objects/38/1db83c50c993bf657264d38f4f81cd44fd176b differ Binary files ./wordpress-3.4/.git/objects/38/3487458a9bd63b0f10fe323967f87fb50546fd and ./wordpress-3.4.1/.git/objects/38/3487458a9bd63b0f10fe323967f87fb50546fd differ Binary files ./wordpress-3.4/.git/objects/38/8486517fa8da13ebd150e8f65d5096c3e10c3a and ./wordpress-3.4.1/.git/objects/38/8486517fa8da13ebd150e8f65d5096c3e10c3a differ Binary files ./wordpress-3.4/.git/objects/38/99f0ecded006fa59ce2bcc301d2a97ab6ab09a and ./wordpress-3.4.1/.git/objects/38/99f0ecded006fa59ce2bcc301d2a97ab6ab09a differ Binary files ./wordpress-3.4/.git/objects/38/daa06627b092cf24dc9ce5da4538c69c08a227 and ./wordpress-3.4.1/.git/objects/38/daa06627b092cf24dc9ce5da4538c69c08a227 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/38/e4f7b481999af4af717af529b79e5574953a05 ./wordpress-3.4.1/.git/objects/38/e4f7b481999af4af717af529b79e5574953a05 *** ./wordpress-3.4/.git/objects/38/e4f7b481999af4af717af529b79e5574953a05 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/38/e4f7b481999af4af717af529b79e5574953a05 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - x�RQK�0���a�p͓�L|�>�1�ͭ�K����S�߽k;'�����rw�wߗܺ\�\�^�<w��k�h\�^��'�e*d��A���M��XXSlվ�J��*�\|� �$;�"�/1�{AP���\M�.���݄��F�c�� <Z�P���U=��ǭ�T쉆�+m���]�M��C��k�S�wѵDݺx(Uy�������N�s��Z�;j��lL��Q� (��C�-������? !F(*f�N�qO��IӴ]\6P���R\�����Č�\MW���b�Z��,��i_U�BL�^;o烖 �N/�d��Գ���surF^�`��0C�it�C�o��C �h����P����c�v8ؐ�eʣu�ǫ�8�/NN� - ��� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/39/254c8dcf14cab2d7149dd0997ba1b361ea0172 and ./wordpress-3.4.1/.git/objects/39/254c8dcf14cab2d7149dd0997ba1b361ea0172 differ Binary files ./wordpress-3.4/.git/objects/39/29bbb51dd950802bb9bf12a397d1ac1e140610 and ./wordpress-3.4.1/.git/objects/39/29bbb51dd950802bb9bf12a397d1ac1e140610 differ Binary files ./wordpress-3.4/.git/objects/39/2bd57cff5d4fea019ab4562f0d3a350959c531 and ./wordpress-3.4.1/.git/objects/39/2bd57cff5d4fea019ab4562f0d3a350959c531 differ Binary files ./wordpress-3.4/.git/objects/3a/0daf1fd63a7181e70c37c039d172d97a314b11 and ./wordpress-3.4.1/.git/objects/3a/0daf1fd63a7181e70c37c039d172d97a314b11 differ Binary files ./wordpress-3.4/.git/objects/3a/25db4afb64883ef7062de69a552eb7c7642560 and ./wordpress-3.4.1/.git/objects/3a/25db4afb64883ef7062de69a552eb7c7642560 differ Binary files ./wordpress-3.4/.git/objects/3a/43135ded872846746d03fdb526f785df14758f and ./wordpress-3.4.1/.git/objects/3a/43135ded872846746d03fdb526f785df14758f differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/3b/198bb203d1c19a365d9ff5954eeed53c0a9a1d ./wordpress-3.4.1/.git/objects/3b/198bb203d1c19a365d9ff5954eeed53c0a9a1d *** ./wordpress-3.4/.git/objects/3b/198bb203d1c19a365d9ff5954eeed53c0a9a1d 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/3b/198bb203d1c19a365d9ff5954eeed53c0a9a1d 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,6 **** - xmSMo�0�5���!���n�Ӏ]��-����t,T�4In�?��mS�&�����^�=l�߯��z�Y��d�����Q�ze��.�xBf�ю�Y�쀶�G���� - �e��ֆ��s��M�3ʘ�E�A� l�+JTYv@��:4��-��l��;� - ���[%�M���y��s0J�]~����l�{X��^���:�Z�n<2!,�a�`���~��q'0�ŗ�p�4� - ���'vn�]^�҅��%��Z[��n %�Yl���;�����U*��հM�%|S�G ��J頄�D,p - ����B��)�8�ů&5I�S�+�XG�������w<���Ob��CJ�\��2!��璬L����{��R�֑jsU��~j43�x�y�"$QvjI�H: - ���W��Xt��4=]ѫQv�^�빖�a�se�N~+ℜ�ӿ�,��is��VKF�xދ�s�`Q�䚀����.aO"Qk�#s�@T�:f��5ܡᬄ���N�ȿD��*Ҩ�}�����N�a�����o���#��>y�-�x��_�ʳq�(��+."�!�4��S��s��DJB��KȄ� ��uX�����}�W��IM�OzjV \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/3b/7e1566edc458bc2f225e77feb6e18fb0010a87 and ./wordpress-3.4.1/.git/objects/3b/7e1566edc458bc2f225e77feb6e18fb0010a87 differ Binary files ./wordpress-3.4/.git/objects/3b/9b8af34ff9141d9498c77e879a1ca3a10b26b2 and ./wordpress-3.4.1/.git/objects/3b/9b8af34ff9141d9498c77e879a1ca3a10b26b2 differ Binary files ./wordpress-3.4/.git/objects/3b/a7b4c7ea8336d6f660334a01d868a8c2f54b88 and ./wordpress-3.4.1/.git/objects/3b/a7b4c7ea8336d6f660334a01d868a8c2f54b88 differ Binary files ./wordpress-3.4/.git/objects/3b/a7c387d71c317885b637dfd78184552ca2c681 and ./wordpress-3.4.1/.git/objects/3b/a7c387d71c317885b637dfd78184552ca2c681 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/3b/aea8126c2f80a7f2a590ea3f092e01a3cd11aa ./wordpress-3.4.1/.git/objects/3b/aea8126c2f80a7f2a590ea3f092e01a3cd11aa *** ./wordpress-3.4/.git/objects/3b/aea8126c2f80a7f2a590ea3f092e01a3cd11aa 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/3b/aea8126c2f80a7f2a590ea3f092e01a3cd11aa 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,5 **** - x}RM��0���!H���$��i�@�P�c�ē����vvɿgl��.B��y��ޛi�n��n���3���:�5�#�G�.}&�ΰ��3:X~�>�Q�UEU��a�ᛶ�ޢs1�� - Q��tD��:� - ¶�Pg��i@��.W���e���|�wZy&��-^��{VK��J��xJ1�r�C'�s�<|��6�Rڗ}��Rհ�&R[;�^x��!z'\B�ǂ� - �yTD�M=l�y�<3� - ׄ/����>t�Ў<�#X�����G�%�� ["�ܣ�q��n�zR�T��h��@p=՞h��(�&��버�(�آyJx�l�HX�3d֝���Ng�uV�>Z��_���X�F��Dw��f��$GX�т�00R� q"�)�B�+��Ibx~���e�����*"3��D��*�Ap�ךF&�~�W� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/3b/cbc04f6a8f5ab9d153bb721ed4c19cb1ed5221 and ./wordpress-3.4.1/.git/objects/3b/cbc04f6a8f5ab9d153bb721ed4c19cb1ed5221 differ Binary files ./wordpress-3.4/.git/objects/3b/f4e701f2cfcca0a12b6c96a8d411a62df02372 and ./wordpress-3.4.1/.git/objects/3b/f4e701f2cfcca0a12b6c96a8d411a62df02372 differ Binary files ./wordpress-3.4/.git/objects/3b/fea5741fa3a241707b3487e493c754870b0eed and ./wordpress-3.4.1/.git/objects/3b/fea5741fa3a241707b3487e493c754870b0eed differ Binary files ./wordpress-3.4/.git/objects/3c/2f66aa62d9b7be7bcaf25170613475757638da and ./wordpress-3.4.1/.git/objects/3c/2f66aa62d9b7be7bcaf25170613475757638da differ Binary files ./wordpress-3.4/.git/objects/3c/41a559c7eaea866c27945621bcf27325b21fe8 and ./wordpress-3.4.1/.git/objects/3c/41a559c7eaea866c27945621bcf27325b21fe8 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/3c/6424d86e84d47e9ef0de3d6d84973e05ca42c8 ./wordpress-3.4.1/.git/objects/3c/6424d86e84d47e9ef0de3d6d84973e05ca42c8 *** ./wordpress-3.4/.git/objects/3c/6424d86e84d47e9ef0de3d6d84973e05ca42c8 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/3c/6424d86e84d47e9ef0de3d6d84973e05ca42c8 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,6 **** - x�U�n1�u�C���6M�B��R"$�(T����̮�1��+�ۋ*>��df��J[^�z�x�rΜ3Ώ������Go�I��ml�`ҏ��BycGuՔJ��ͻ?�l��w����V��{����;����RL� - ok���R���Xh|�]��)��ע�c��\)��B�an�k�ʉ����7�{�E=;�p^;/���uਪ��X餽�E�Z���ɰ�"��ԅ�4�H�kᦕ�!�yN��a��3�KcץCfVL�f���/H+�K���Kd�R8 - w�PjN��p���,� - �i���9"VF���p�S�8VK{�d���+�� W�F�3ى]��:I�J�s؇�O��:�ҟ|£�~ݢ �x��q��gx�$cc��'�E ҡr�Ɛ=�݈Ad�YpfӐ�n���R��3���ˑ�4�F�~�8�9"|A�3�����,��8�+"AC��X�<��&���%�gу��y��A(��t;�tQ(U�+"c����Q��}���&�=�G�� D����א�7�i�����ds�5&8M՝ - :z��$dD��RKTL��)�o��7��>e3�z0���L-�����wM]��Al��z��r�ekq,Z^�K���5��56[�7H,�xl�����'��yQU����Z �����z���!���-�fx�� 姸���cU����]^'�q��:D��4��ޯV����a���6�T���i�6`��ԑi�3����9/�Nfv|��}a+��Z�Zw�1 - ���Ǐ�7}��r�ZwX�Y>�Š���):d�|�:�vx��y^[ \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/3c/bf32c4f2fcff1ab7b7463dd20b732fa7213d62 and ./wordpress-3.4.1/.git/objects/3c/bf32c4f2fcff1ab7b7463dd20b732fa7213d62 differ Binary files ./wordpress-3.4/.git/objects/3c/ccb7b46759ecda9cbcf3bf4171a1ebb2a13b03 and ./wordpress-3.4.1/.git/objects/3c/ccb7b46759ecda9cbcf3bf4171a1ebb2a13b03 differ Binary files ./wordpress-3.4/.git/objects/3d/04407ade0b08a86c1497c962faa8d5b23e1cdf and ./wordpress-3.4.1/.git/objects/3d/04407ade0b08a86c1497c962faa8d5b23e1cdf differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/3d/36a2cc59f31d78cf757e58e244e281da501f27 ./wordpress-3.4.1/.git/objects/3d/36a2cc59f31d78cf757e58e244e281da501f27 *** ./wordpress-3.4/.git/objects/3d/36a2cc59f31d78cf757e58e244e281da501f27 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/3d/36a2cc59f31d78cf757e58e244e281da501f27 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,4 **** - x=�1�0E�s - o-� - �"�������Ւ'Q9>�F��l�nr���x�w/�P�%M�E���A�Y - �u$g�k�����>{ݏz@�96W��4����V@�G��F6y��`|&bT.�e����M�m���b4����qv<�EQ����\}���؊7=�E� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/3d/3f13d63b95168376145d0db38d21b633e551d0 and ./wordpress-3.4.1/.git/objects/3d/3f13d63b95168376145d0db38d21b633e551d0 differ Binary files ./wordpress-3.4/.git/objects/3d/6d4a9a26055f4dd6aca0f36d53172e52e39772 and ./wordpress-3.4.1/.git/objects/3d/6d4a9a26055f4dd6aca0f36d53172e52e39772 differ Binary files ./wordpress-3.4/.git/objects/3d/72381c7d60024d3e2afa7d8460da25c96a4032 and ./wordpress-3.4.1/.git/objects/3d/72381c7d60024d3e2afa7d8460da25c96a4032 differ Binary files ./wordpress-3.4/.git/objects/3d/b208ef36650dc02e30b99ee4cd64d1e91abfbd and ./wordpress-3.4.1/.git/objects/3d/b208ef36650dc02e30b99ee4cd64d1e91abfbd differ Binary files ./wordpress-3.4/.git/objects/3d/cff261f60ef642177abd6fa806a1a5a1ec9ed1 and ./wordpress-3.4.1/.git/objects/3d/cff261f60ef642177abd6fa806a1a5a1ec9ed1 differ Binary files ./wordpress-3.4/.git/objects/3d/e77c1d802d937c53875adb3bcba32d53458e1d and ./wordpress-3.4.1/.git/objects/3d/e77c1d802d937c53875adb3bcba32d53458e1d differ Binary files ./wordpress-3.4/.git/objects/3e/0c25bb0c6373844bb392eade607ed3697e2598 and ./wordpress-3.4.1/.git/objects/3e/0c25bb0c6373844bb392eade607ed3697e2598 differ Binary files ./wordpress-3.4/.git/objects/3e/16a67d7f3b42afa6b4042a93c5f665c5526ace and ./wordpress-3.4.1/.git/objects/3e/16a67d7f3b42afa6b4042a93c5f665c5526ace differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/3e/1b8ef56013cdcd11f4a23c7859ba32ab3b5af2 ./wordpress-3.4.1/.git/objects/3e/1b8ef56013cdcd11f4a23c7859ba32ab3b5af2 *** ./wordpress-3.4/.git/objects/3e/1b8ef56013cdcd11f4a23c7859ba32ab3b5af2 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/3e/1b8ef56013cdcd11f4a23c7859ba32ab3b5af2 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - xU�AK1`��W����Bwы��X(���cH�� �&q���7]�����̺�k\\��\߆6��,J,�6�%�<��)F����]O.A;�D}�t�*���z�?����B�wHLl������F�� q�?B���A�-]����2)�6$a,;ݓT�i�|T�@�i=�Y����S{59�c=�m�o�٬����h�^��b��U� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/3e/22fe2477f9c2d3bfc1c2985de16048fb52a4fe and ./wordpress-3.4.1/.git/objects/3e/22fe2477f9c2d3bfc1c2985de16048fb52a4fe differ Binary files ./wordpress-3.4/.git/objects/3e/6a67508a00cc5e884922d0b553e06e7dfed01d and ./wordpress-3.4.1/.git/objects/3e/6a67508a00cc5e884922d0b553e06e7dfed01d differ Binary files ./wordpress-3.4/.git/objects/3f/96366ca1d927e7f6d43b4411e901fe90ab1108 and ./wordpress-3.4.1/.git/objects/3f/96366ca1d927e7f6d43b4411e901fe90ab1108 differ Binary files ./wordpress-3.4/.git/objects/3f/a52e7912d0294e7b8f0af57deba3d7f75dadbd and ./wordpress-3.4.1/.git/objects/3f/a52e7912d0294e7b8f0af57deba3d7f75dadbd differ Binary files ./wordpress-3.4/.git/objects/3f/eeaebd22ef18232cfc617bc20fa6fb00c9cc42 and ./wordpress-3.4.1/.git/objects/3f/eeaebd22ef18232cfc617bc20fa6fb00c9cc42 differ Binary files ./wordpress-3.4/.git/objects/40/26dd0bb18ba8a391f9cfdf7c0c43f5e6171718 and ./wordpress-3.4.1/.git/objects/40/26dd0bb18ba8a391f9cfdf7c0c43f5e6171718 differ Binary files ./wordpress-3.4/.git/objects/40/d978ff48040a251a81fcd1fd25d7e53879693e and ./wordpress-3.4.1/.git/objects/40/d978ff48040a251a81fcd1fd25d7e53879693e differ Binary files ./wordpress-3.4/.git/objects/41/0c7ad084db698e9f35e3230233aa4040682566 and ./wordpress-3.4.1/.git/objects/41/0c7ad084db698e9f35e3230233aa4040682566 differ Binary files ./wordpress-3.4/.git/objects/41/4a95785b20af83e8f63b58bb1af90654b1e189 and ./wordpress-3.4.1/.git/objects/41/4a95785b20af83e8f63b58bb1af90654b1e189 differ Binary files ./wordpress-3.4/.git/objects/41/6c11a855663bee0945f511235c458397604f8c and ./wordpress-3.4.1/.git/objects/41/6c11a855663bee0945f511235c458397604f8c differ Binary files ./wordpress-3.4/.git/objects/41/7572db4ffa2b55701d5d128f69d2136abe4df6 and ./wordpress-3.4.1/.git/objects/41/7572db4ffa2b55701d5d128f69d2136abe4df6 differ Binary files ./wordpress-3.4/.git/objects/41/82718cb5549a1ba031f044d72a8982cfa2e6f7 and ./wordpress-3.4.1/.git/objects/41/82718cb5549a1ba031f044d72a8982cfa2e6f7 differ Binary files ./wordpress-3.4/.git/objects/41/a284e6d1b0a3776421d9be97d8d0a8873bcf3a and ./wordpress-3.4.1/.git/objects/41/a284e6d1b0a3776421d9be97d8d0a8873bcf3a differ Binary files ./wordpress-3.4/.git/objects/41/def5115ea5a42785a380a56190c90ba4cbc1c6 and ./wordpress-3.4.1/.git/objects/41/def5115ea5a42785a380a56190c90ba4cbc1c6 differ Binary files ./wordpress-3.4/.git/objects/41/e07ba648c4b7b4b7deb7f23e52cc78627485cb and ./wordpress-3.4.1/.git/objects/41/e07ba648c4b7b4b7deb7f23e52cc78627485cb differ Binary files ./wordpress-3.4/.git/objects/42/1de55d16af49aa1d3276eb9e5d4f89510c045b and ./wordpress-3.4.1/.git/objects/42/1de55d16af49aa1d3276eb9e5d4f89510c045b differ Binary files ./wordpress-3.4/.git/objects/42/2cc8df25c6ff1ba125c941ea1aa5999dcbf720 and ./wordpress-3.4.1/.git/objects/42/2cc8df25c6ff1ba125c941ea1aa5999dcbf720 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/42/75a59bfe5d4b1a0f29388e574355d2447fdf17 ./wordpress-3.4.1/.git/objects/42/75a59bfe5d4b1a0f29388e574355d2447fdf17 *** ./wordpress-3.4/.git/objects/42/75a59bfe5d4b1a0f29388e574355d2447fdf17 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/42/75a59bfe5d4b1a0f29388e574355d2447fdf17 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,4 **** - xUS�O�0�3��C��6�-UTM{H�~�x@<8�%q�ƙ�P�}紴T���}w��d��ȗ���c2�Ձ}%�W$&�3�Y�O�:���ǓO���� ��o]2��W]&�Y��B�w��Uw9��l@E�;�j���;��f�W��ʓH�������?¿�)�� - 9������kr2>���Q^�&�<c�<,��P�,��6�W� 찃}.����(����#m�ӡ0�ԛ��xoh�Px| ��'�[�ߘ"�3aڐ���u�y���ɵE0���]%�erƕ��{PY��l[�ȖP�E�Y�-j��J�94tͦa�2-Ҕv-]�����Ά���,�a���,0@�@I�>��y�(�)*�\ g���<�K�E�B�R7��d͒-�s_ l - �>�2�a��W� - �δ����f3�S��:ћi�i���˧4���vi�4Şc<�����T#���$/��~�睕A�$o&�tS��MǍ�ㆷ5xHv���r4��,8o�Vͽ���^D\%�:���h���\��ɑ�n��U"������f��we��B� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/42/75acac5b7b27d70e6ec29fe4c7dc8549a056b1 and ./wordpress-3.4.1/.git/objects/42/75acac5b7b27d70e6ec29fe4c7dc8549a056b1 differ Binary files ./wordpress-3.4/.git/objects/42/82004fb747f7e57dc1b617b213d8bafbb265e7 and ./wordpress-3.4.1/.git/objects/42/82004fb747f7e57dc1b617b213d8bafbb265e7 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/42/a82d112c5d568031498bb94d978777225ab35f ./wordpress-3.4.1/.git/objects/42/a82d112c5d568031498bb94d978777225ab35f *** ./wordpress-3.4/.git/objects/42/a82d112c5d568031498bb94d978777225ab35f 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/42/a82d112c5d568031498bb94d978777225ab35f 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,4 **** - x}Tmo�6�Oq�! g������@�xEP$ :w/���h�6E�%ǐ��wԛ�l����=w��@�`�x��O?�M�C+�Ƥ*y6 }+�1 ��|G�(E&a�RhK�Q'x��$>��Db93���h�SUl��ٚ����Z�Jji��džnI5H�%ݑJn����$�}�Re���pr - �w�iFT�M��v4��j�_���ؒJ�!˅��ȓ:-�'4��菏�RG� �,�嘶d���ıA�?�����Sq�XF�����t�=*�"����[-9��2��T�:s�H�R�A��!!���*��L�9ⷎ8�SʍQ]�sE��_���r��k}�eu�N - ������v����ŷ'@v�����ڱ$PGɶ�^$a ��"��-�M��M�5�(4~��d� - ^R�r�s�p���!Kp��``L�7],�_5SBom�L��6H��c�DƊ��4��p�w��2��ҧׅR �N_����r�>�'m��6n�}�n��`��]0#/�DI=-�-�����}�� �q��������;�q�c���ı%ޚ���x� ]�n�v>�.m�.�� �.y�7b���,>���q�]X��k�4��P)֖���X)s���k�S����/N���>IX�2��c@��"����fÌ�^|M�",� �O��?�po`Z:��L�y�Þw�s�=��W��P(�Vo��j �U)����;�>/ll2ݙg)B�����܊$�\�G����Plm���C#����&ATB�s���K��g�^-���| 5�}Xyݕ��t=�Rd9|o��w&��SNC�� �h�Β�w1��[���r;݇�}�IC0Y�h�O� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/42/af070ae9803e9a3a941695c5698d4bafed7646 and ./wordpress-3.4.1/.git/objects/42/af070ae9803e9a3a941695c5698d4bafed7646 differ Binary files ./wordpress-3.4/.git/objects/42/c1fbfa2361d7089fa433a27b7783a1519eac7d and ./wordpress-3.4.1/.git/objects/42/c1fbfa2361d7089fa433a27b7783a1519eac7d differ Binary files ./wordpress-3.4/.git/objects/42/cd217dce616413d9c8f45936f5adea36840ca9 and ./wordpress-3.4.1/.git/objects/42/cd217dce616413d9c8f45936f5adea36840ca9 differ Binary files ./wordpress-3.4/.git/objects/42/f08b79942d32f9d7e693b6952c2d935e352774 and ./wordpress-3.4.1/.git/objects/42/f08b79942d32f9d7e693b6952c2d935e352774 differ Binary files ./wordpress-3.4/.git/objects/43/523ca6980d58a8d8f517fae6157700b8e710d2 and ./wordpress-3.4.1/.git/objects/43/523ca6980d58a8d8f517fae6157700b8e710d2 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/43/9fcdb81e19b63837a6ae2bd356cb56423f656b ./wordpress-3.4.1/.git/objects/43/9fcdb81e19b63837a6ae2bd356cb56423f656b *** ./wordpress-3.4/.git/objects/43/9fcdb81e19b63837a6ae2bd356cb56423f656b 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/43/9fcdb81e19b63837a6ae2bd356cb56423f656b 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,6 **** - x��Mo�@�{ſbz2D�6�VjIQ[���*Gk�`�~ջnRU��]C�@V - r/y=�;_�q)M �..���nl6>;��f�� GLJ0+��[S�E���+���5��h�,f�݈L��g˪-[?1�w]S���t�eb}xWB#�緋b2�Ϯ��o��a�.J]Kz ���ê6 - X{j�ߚ�f��w��wD1��3��Bp�ẃ� - k��`ζt��1��@Q�!��y& �:��q�����p� �Y#}���s���� J�66�77���\'UF��GY/�XB����@鸚\+��0���g��5�B��I$):)���C���r>�ۥ1[���K� - ��5��O.o��{L�.�n\�@!�9)�|1J���e���Py�C�:0��I���M�g*�@%�I"P - s�uVP��P�)k���ИWu� �B6kzU��FLJø�Y�I����j�vp��L.�%4���h��tΔ߁R:��d����w���mX�2����i%s4�%��tR�ɐƚ$��{^?�m��r��_^p�$_i��G�~:�r]��?�[�?��DLBc��Fڪ�I�F�Q �9-f���kl;�q?=�+�Z�����^�w��������/` \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/43/a735f22c81d6d7d99c1ba9f034f38bfdd1a92b and ./wordpress-3.4.1/.git/objects/43/a735f22c81d6d7d99c1ba9f034f38bfdd1a92b differ Binary files ./wordpress-3.4/.git/objects/43/dbe297641164baab8778c5f57561de3595114b and ./wordpress-3.4.1/.git/objects/43/dbe297641164baab8778c5f57561de3595114b differ Binary files ./wordpress-3.4/.git/objects/43/e82f8a6bfe97d79e91d2e2644f9665b68773eb and ./wordpress-3.4.1/.git/objects/43/e82f8a6bfe97d79e91d2e2644f9665b68773eb differ Binary files ./wordpress-3.4/.git/objects/43/e9ac409938e6fa19d813a445ff5d707d416d69 and ./wordpress-3.4.1/.git/objects/43/e9ac409938e6fa19d813a445ff5d707d416d69 differ Binary files ./wordpress-3.4/.git/objects/43/f9081de78e2fd9b3c1123320dcc951e3391584 and ./wordpress-3.4.1/.git/objects/43/f9081de78e2fd9b3c1123320dcc951e3391584 differ Binary files ./wordpress-3.4/.git/objects/44/9f0e25f95cf2c28bdabb19aec700972d1862fc and ./wordpress-3.4.1/.git/objects/44/9f0e25f95cf2c28bdabb19aec700972d1862fc differ Binary files ./wordpress-3.4/.git/objects/44/b2aa57e9bd5291018af026ca4ae14dbfcb1c7b and ./wordpress-3.4.1/.git/objects/44/b2aa57e9bd5291018af026ca4ae14dbfcb1c7b differ Binary files ./wordpress-3.4/.git/objects/44/d8294ac5e81e2d77a3d7211564db7f4fde3b16 and ./wordpress-3.4.1/.git/objects/44/d8294ac5e81e2d77a3d7211564db7f4fde3b16 differ Binary files ./wordpress-3.4/.git/objects/44/d96a0426f50503b73355d834a5ef70b72c8c7a and ./wordpress-3.4.1/.git/objects/44/d96a0426f50503b73355d834a5ef70b72c8c7a differ Binary files ./wordpress-3.4/.git/objects/45/3394882bade1113f4f9761256ffd799f7a0359 and ./wordpress-3.4.1/.git/objects/45/3394882bade1113f4f9761256ffd799f7a0359 differ Binary files ./wordpress-3.4/.git/objects/45/7aed02951192e34a1ca5f159baaa5abac299fe and ./wordpress-3.4.1/.git/objects/45/7aed02951192e34a1ca5f159baaa5abac299fe differ Binary files ./wordpress-3.4/.git/objects/45/7f199c3db445e2323585de93a0313e75b6d1e0 and ./wordpress-3.4.1/.git/objects/45/7f199c3db445e2323585de93a0313e75b6d1e0 differ Binary files ./wordpress-3.4/.git/objects/45/89cb4dc6a7557359e523877b28ebf87d5251d4 and ./wordpress-3.4.1/.git/objects/45/89cb4dc6a7557359e523877b28ebf87d5251d4 differ Binary files ./wordpress-3.4/.git/objects/45/8ab30b6a07beefe0153c3a6f3da20e4030826d and ./wordpress-3.4.1/.git/objects/45/8ab30b6a07beefe0153c3a6f3da20e4030826d differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/45/c2358a48141603c27d77992228f0b68f1ed807 ./wordpress-3.4.1/.git/objects/45/c2358a48141603c27d77992228f0b68f1ed807 *** ./wordpress-3.4/.git/objects/45/c2358a48141603c27d77992228f0b68f1ed807 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/45/c2358a48141603c27d77992228f0b68f1ed807 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - x}QM�� �Oq�ÂBi�J{aW�sժ�(���G'�,�{��&�= ���13�]]=|~x��c�t��k�=��Dm���ɾ��SU+�Cxõ�F�K�^hc�>h�t�u�iRkuU�/Pt�ɭ/�nΎ����^Ze(��� - ˨�@�c"��Lيl>Ο�繠tΉo���b��NE8U�/�MX�z�o������E�;��S�>I��JJ�Z��㕪�n'�:�g�Z�!�R�l�@0��#�^��;}�o�� )VKK�t��=�%���e��f#�|�|�τ���+t�t��i �@x��T�m]X��_��H�4�^`2Tz��?�dw�D�G��~���<9+L�d��� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/45/c676b4a934687d096676d6ecbcd5e0eadecbd5 and ./wordpress-3.4.1/.git/objects/45/c676b4a934687d096676d6ecbcd5e0eadecbd5 differ Binary files ./wordpress-3.4/.git/objects/45/ddd2f6c856506599e377ed381dbe5ba976acb9 and ./wordpress-3.4.1/.git/objects/45/ddd2f6c856506599e377ed381dbe5ba976acb9 differ Binary files ./wordpress-3.4/.git/objects/46/01636d7c0a4a91d6fe140c3bbb94c22574c864 and ./wordpress-3.4.1/.git/objects/46/01636d7c0a4a91d6fe140c3bbb94c22574c864 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/46/4ab8c4654eeac5b06cd5773b17126dc53c120b ./wordpress-3.4.1/.git/objects/46/4ab8c4654eeac5b06cd5773b17126dc53c120b *** ./wordpress-3.4/.git/objects/46/4ab8c4654eeac5b06cd5773b17126dc53c120b 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/46/4ab8c4654eeac5b06cd5773b17126dc53c120b 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - x}R�n!�_�)6�7�N�MΧ�ύ{,�֯6�{M[[mHH������U�|�C�^��N�� {��&A[��W�����uu�f8�ީ�-����Y/Zh�)'me��1�>�`��ݺ�l�u�"��tt�ѷPâ'��-��1�l!:҂�L����ݬ�&uz�.��vD+�4�b��C���5���~�:&�ʝ���b5�2������k�R�١<~|��^&�ɮ� -L�&�;7��k�p�B.���KU��Y�Gi�wK���;�4�5��[6�>� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/46/d95b97849ce4cb08f3256f936a9018e3f4d923 and ./wordpress-3.4.1/.git/objects/46/d95b97849ce4cb08f3256f936a9018e3f4d923 differ Binary files ./wordpress-3.4/.git/objects/46/dac85bb9137e6c24f1de1d7af83eee0bf5e0e6 and ./wordpress-3.4.1/.git/objects/46/dac85bb9137e6c24f1de1d7af83eee0bf5e0e6 differ Binary files ./wordpress-3.4/.git/objects/46/e3e16b590ef69a3ac96f01f4e6303f75887e93 and ./wordpress-3.4.1/.git/objects/46/e3e16b590ef69a3ac96f01f4e6303f75887e93 differ Binary files ./wordpress-3.4/.git/objects/47/175243585e68a1e2df3bf737d50f7cf62b6490 and ./wordpress-3.4.1/.git/objects/47/175243585e68a1e2df3bf737d50f7cf62b6490 differ Binary files ./wordpress-3.4/.git/objects/47/2cb133d6bf3ae821c06972059004f496629c24 and ./wordpress-3.4.1/.git/objects/47/2cb133d6bf3ae821c06972059004f496629c24 differ Binary files ./wordpress-3.4/.git/objects/47/338c99fa84241ff4f5694863bf4c763e639b16 and ./wordpress-3.4.1/.git/objects/47/338c99fa84241ff4f5694863bf4c763e639b16 differ Binary files ./wordpress-3.4/.git/objects/47/76a52f81bcb82c38db24fe23528655317f75cb and ./wordpress-3.4.1/.git/objects/47/76a52f81bcb82c38db24fe23528655317f75cb differ Binary files ./wordpress-3.4/.git/objects/47/88a507d64bfe5eb1c253767d059593e4a2c4fd and ./wordpress-3.4.1/.git/objects/47/88a507d64bfe5eb1c253767d059593e4a2c4fd differ Binary files ./wordpress-3.4/.git/objects/47/dd4e5bd88e8238aec83f18f863ac6e231ece24 and ./wordpress-3.4.1/.git/objects/47/dd4e5bd88e8238aec83f18f863ac6e231ece24 differ Binary files ./wordpress-3.4/.git/objects/48/744fab7c46dd89f3c30c68018e467939c9be5e and ./wordpress-3.4.1/.git/objects/48/744fab7c46dd89f3c30c68018e467939c9be5e differ Binary files ./wordpress-3.4/.git/objects/48/bb1a3182a7da35f9b7342f884e17de437c5f5d and ./wordpress-3.4.1/.git/objects/48/bb1a3182a7da35f9b7342f884e17de437c5f5d differ Binary files ./wordpress-3.4/.git/objects/48/e8f7ef1d8f4f452f32aa51fa48b14b7b98b049 and ./wordpress-3.4.1/.git/objects/48/e8f7ef1d8f4f452f32aa51fa48b14b7b98b049 differ Binary files ./wordpress-3.4/.git/objects/49/08880e7d51a4a8963b7689e247fa48c20bd008 and ./wordpress-3.4.1/.git/objects/49/08880e7d51a4a8963b7689e247fa48c20bd008 differ Binary files ./wordpress-3.4/.git/objects/49/33202819949ec3c9c0f38a529c3be7a05459da and ./wordpress-3.4.1/.git/objects/49/33202819949ec3c9c0f38a529c3be7a05459da differ Binary files ./wordpress-3.4/.git/objects/49/406f61c7d03597b94ccf80e86cc6451dfbb316 and ./wordpress-3.4.1/.git/objects/49/406f61c7d03597b94ccf80e86cc6451dfbb316 differ Binary files ./wordpress-3.4/.git/objects/49/7307a85ad32e00b67c5f27d6f3b46ac566d89b and ./wordpress-3.4.1/.git/objects/49/7307a85ad32e00b67c5f27d6f3b46ac566d89b differ Binary files ./wordpress-3.4/.git/objects/49/81ec60d43006dab5c2126e7bac570aeadeb9c6 and ./wordpress-3.4.1/.git/objects/49/81ec60d43006dab5c2126e7bac570aeadeb9c6 differ Binary files ./wordpress-3.4/.git/objects/49/b94aedb468c6a60b884773b4ca9661b2774d5c and ./wordpress-3.4.1/.git/objects/49/b94aedb468c6a60b884773b4ca9661b2774d5c differ Binary files ./wordpress-3.4/.git/objects/49/b94c7799537bc7b43cfda7b6069463ba145ccf and ./wordpress-3.4.1/.git/objects/49/b94c7799537bc7b43cfda7b6069463ba145ccf differ Binary files ./wordpress-3.4/.git/objects/4a/135bdf2072344c67856820f2da7255bd51973e and ./wordpress-3.4.1/.git/objects/4a/135bdf2072344c67856820f2da7255bd51973e differ Binary files ./wordpress-3.4/.git/objects/4a/15056adb87263648da2747b3a32ea7671034ce and ./wordpress-3.4.1/.git/objects/4a/15056adb87263648da2747b3a32ea7671034ce differ Binary files ./wordpress-3.4/.git/objects/4a/41080deb434397df97bb3fbdb1c8a7fd5720a4 and ./wordpress-3.4.1/.git/objects/4a/41080deb434397df97bb3fbdb1c8a7fd5720a4 differ Binary files ./wordpress-3.4/.git/objects/4a/93eab86d01f40bdd379fb0b73cb6578cb5f6c0 and ./wordpress-3.4.1/.git/objects/4a/93eab86d01f40bdd379fb0b73cb6578cb5f6c0 differ Binary files ./wordpress-3.4/.git/objects/4a/e317b8985b8c7190d591f15951ef11a9625657 and ./wordpress-3.4.1/.git/objects/4a/e317b8985b8c7190d591f15951ef11a9625657 differ Binary files ./wordpress-3.4/.git/objects/4a/f1031e0613a286bc2901fbc1fcb93e9575f80a and ./wordpress-3.4.1/.git/objects/4a/f1031e0613a286bc2901fbc1fcb93e9575f80a differ Binary files ./wordpress-3.4/.git/objects/4b/0eb2eeb3a7036e87d9e68f3b7b2aa711cba683 and ./wordpress-3.4.1/.git/objects/4b/0eb2eeb3a7036e87d9e68f3b7b2aa711cba683 differ Binary files ./wordpress-3.4/.git/objects/4b/26eb0f620c106090c855a8baa02c2764c57da0 and ./wordpress-3.4.1/.git/objects/4b/26eb0f620c106090c855a8baa02c2764c57da0 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/4b/4f622d95289adfe612c7e346297ea880952a6c ./wordpress-3.4.1/.git/objects/4b/4f622d95289adfe612c7e346297ea880952a6c *** ./wordpress-3.4/.git/objects/4b/4f622d95289adfe612c7e346297ea880952a6c 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/4b/4f622d95289adfe612c7e346297ea880952a6c 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - xe�� - �0E]�+f!D���FE]�[AŅHI�A�m&恿oS�B�ι�{F�$a:��k����2�mMB��74����j��>848V��m4�7VTOqG��S��wWe��--����ʵ��A~���"�E���D!��Tu���aI������V������>�`�OS \ No newline at end of file --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/4b/6b70e15e6ecfe06cbeabf80c393bb44cab4385 ./wordpress-3.4.1/.git/objects/4b/6b70e15e6ecfe06cbeabf80c393bb44cab4385 *** ./wordpress-3.4/.git/objects/4b/6b70e15e6ecfe06cbeabf80c393bb44cab4385 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/4b/6b70e15e6ecfe06cbeabf80c393bb44cab4385 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - x}�[k1��j��y�Ɣ�aS(�4��)4�B+ͺjei�܄����κ��Q��7�Q�B'����y;�@-�)��>���]%�_ c�{:è�l�o��c�B��P�@D��� D���~ } � ��*��<���P�-E�ϔ'k4-�h_�*O�1|!��B�8C�ٮgm�r+�p�x$�2F�����D�4����tA4��0_sC1'wE�S7��S!��+�j���Ne^��1�2�$���j*�c��9k�im5��J�}u�-z�9�ꗹ���D�)�/>���H�M-�ש�DQ�O��ы�B,I��1ҽ$e�c���,';�ĺ�s�1�7b3{:��� 9���w�;`�]aEo��y�U���XB� ��'9�%�D.O��`�weM9��t>���$N \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/4b/9293b1d1307c9e4b5e53b4d12bc1cdc2589617 and ./wordpress-3.4.1/.git/objects/4b/9293b1d1307c9e4b5e53b4d12bc1cdc2589617 differ Binary files ./wordpress-3.4/.git/objects/4b/d62c217f0824c018efc3749a1f783d960af001 and ./wordpress-3.4.1/.git/objects/4b/d62c217f0824c018efc3749a1f783d960af001 differ Binary files ./wordpress-3.4/.git/objects/4b/e9c3faf40c1d50fd91bd409f059560a7515c04 and ./wordpress-3.4.1/.git/objects/4b/e9c3faf40c1d50fd91bd409f059560a7515c04 differ Binary files ./wordpress-3.4/.git/objects/4b/ee9e1afdb0ff0eccdf070d4252dcc69a0e0fd4 and ./wordpress-3.4.1/.git/objects/4b/ee9e1afdb0ff0eccdf070d4252dcc69a0e0fd4 differ Binary files ./wordpress-3.4/.git/objects/4b/f86435ff0de95b037a2c19863d41ff1fd07cfe and ./wordpress-3.4.1/.git/objects/4b/f86435ff0de95b037a2c19863d41ff1fd07cfe differ Binary files ./wordpress-3.4/.git/objects/4c/7089513af2c6275d5efe08539c8af6971fc3f4 and ./wordpress-3.4.1/.git/objects/4c/7089513af2c6275d5efe08539c8af6971fc3f4 differ Binary files ./wordpress-3.4/.git/objects/4c/7e0853b5d95022837b754c3fbf87668170cd66 and ./wordpress-3.4.1/.git/objects/4c/7e0853b5d95022837b754c3fbf87668170cd66 differ Binary files ./wordpress-3.4/.git/objects/4c/87a877fada057be4035999f1267b2d12f35680 and ./wordpress-3.4.1/.git/objects/4c/87a877fada057be4035999f1267b2d12f35680 differ Binary files ./wordpress-3.4/.git/objects/4c/e2f6ebea40117f29bebd66991499d0c3f95924 and ./wordpress-3.4.1/.git/objects/4c/e2f6ebea40117f29bebd66991499d0c3f95924 differ Binary files ./wordpress-3.4/.git/objects/4c/faec1512055045d04d82788cb294512e8a7b57 and ./wordpress-3.4.1/.git/objects/4c/faec1512055045d04d82788cb294512e8a7b57 differ Binary files ./wordpress-3.4/.git/objects/4d/4d8c487d365d6831a49100552121b423da2334 and ./wordpress-3.4.1/.git/objects/4d/4d8c487d365d6831a49100552121b423da2334 differ Binary files ./wordpress-3.4/.git/objects/4d/63ca98103e7273001bab311fa45e08bf753bae and ./wordpress-3.4.1/.git/objects/4d/63ca98103e7273001bab311fa45e08bf753bae differ Binary files ./wordpress-3.4/.git/objects/4d/73265c8f2fdc2cd8e3cebed93df446a1c5a0a4 and ./wordpress-3.4.1/.git/objects/4d/73265c8f2fdc2cd8e3cebed93df446a1c5a0a4 differ Binary files ./wordpress-3.4/.git/objects/4d/9ffe272b0b5dd50a0a53e868fde1b32e7ac17c and ./wordpress-3.4.1/.git/objects/4d/9ffe272b0b5dd50a0a53e868fde1b32e7ac17c differ Binary files ./wordpress-3.4/.git/objects/4e/50b9383312dc4c26c6bd95da098b911b664cc5 and ./wordpress-3.4.1/.git/objects/4e/50b9383312dc4c26c6bd95da098b911b664cc5 differ Binary files ./wordpress-3.4/.git/objects/4e/5daabd4d2f2f07ed8a98e6d21ba7035b28b4ba and ./wordpress-3.4.1/.git/objects/4e/5daabd4d2f2f07ed8a98e6d21ba7035b28b4ba differ Binary files ./wordpress-3.4/.git/objects/4e/6c07c7ee1691cab5336b2f356ff6a5f367f879 and ./wordpress-3.4.1/.git/objects/4e/6c07c7ee1691cab5336b2f356ff6a5f367f879 differ Binary files ./wordpress-3.4/.git/objects/4e/ffe52fc88cb5b10a52eb144b2b7dcacdec1a37 and ./wordpress-3.4.1/.git/objects/4e/ffe52fc88cb5b10a52eb144b2b7dcacdec1a37 differ Binary files ./wordpress-3.4/.git/objects/4f/311567ed0bde877c5a1291a5853fd84b3fe951 and ./wordpress-3.4.1/.git/objects/4f/311567ed0bde877c5a1291a5853fd84b3fe951 differ Binary files ./wordpress-3.4/.git/objects/4f/40f96a61c2892ab173eca57cb3ab602be169aa and ./wordpress-3.4.1/.git/objects/4f/40f96a61c2892ab173eca57cb3ab602be169aa differ Binary files ./wordpress-3.4/.git/objects/4f/8bc3582593ddb8c5a0b43e6731407f0adb4c38 and ./wordpress-3.4.1/.git/objects/4f/8bc3582593ddb8c5a0b43e6731407f0adb4c38 differ Binary files ./wordpress-3.4/.git/objects/4f/8f8d3adf5d99fe42b18fbb836937a6b8569ad6 and ./wordpress-3.4.1/.git/objects/4f/8f8d3adf5d99fe42b18fbb836937a6b8569ad6 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/4f/b1c40ae8e6b576b4d5116ad018e75c250e1edc ./wordpress-3.4.1/.git/objects/4f/b1c40ae8e6b576b4d5116ad018e75c250e1edc *** ./wordpress-3.4/.git/objects/4f/b1c40ae8e6b576b4d5116ad018e75c250e1edc 2012-06-13 17:00:00.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/4f/b1c40ae8e6b576b4d5116ad018e75c250e1edc 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - x+)JMU0�`040031Q�����K�+�(`�ԾZ�?��-a��V���G Ur \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/4f/d9377c3ce1c8ba819711493aa99b5e59804cd6 and ./wordpress-3.4.1/.git/objects/4f/d9377c3ce1c8ba819711493aa99b5e59804cd6 differ Binary files ./wordpress-3.4/.git/objects/4f/df2064c79441181fb4580f1d04339562ce2a37 and ./wordpress-3.4.1/.git/objects/4f/df2064c79441181fb4580f1d04339562ce2a37 differ Binary files ./wordpress-3.4/.git/objects/50/0c8a89a05f87aef5ca5d63713e2aad5f9d0290 and ./wordpress-3.4.1/.git/objects/50/0c8a89a05f87aef5ca5d63713e2aad5f9d0290 differ Binary files ./wordpress-3.4/.git/objects/50/14feac4bd656c887607210f9d062fda0e0a505 and ./wordpress-3.4.1/.git/objects/50/14feac4bd656c887607210f9d062fda0e0a505 differ Binary files ./wordpress-3.4/.git/objects/50/2fe247e811741d6fa2cd4f45d1db7deff32501 and ./wordpress-3.4.1/.git/objects/50/2fe247e811741d6fa2cd4f45d1db7deff32501 differ Binary files ./wordpress-3.4/.git/objects/50/ac6e0283a959c8afe2d49dcc04ce12f5be6015 and ./wordpress-3.4.1/.git/objects/50/ac6e0283a959c8afe2d49dcc04ce12f5be6015 differ Binary files ./wordpress-3.4/.git/objects/50/cb37589dc806432f5c03efe79aaaad3b22567e and ./wordpress-3.4.1/.git/objects/50/cb37589dc806432f5c03efe79aaaad3b22567e differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/51/4a22b41a931d454c593091a71bca9a0a0cae58 ./wordpress-3.4.1/.git/objects/51/4a22b41a931d454c593091a71bca9a0a0cae58 *** ./wordpress-3.4/.git/objects/51/4a22b41a931d454c593091a71bca9a0a0cae58 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/51/4a22b41a931d454c593091a71bca9a0a0cae58 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,3 **** - xU�KO1���_aN��C��$�x���1�6n���&��lYG�3�<y�`���zx�OQ�0(�����($��D�R�6��*l�'���= |ptۈ)��T���V|�D/ - ;�����:��1ᕭ��������� - E4\c:X�q.�k��J�:�J�p�zu}�Z����N���\ 8;yt���q?�Fң\����3�d3 \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/51/9f9df417088d47f9879dc0d79f5f3c0fd75662 and ./wordpress-3.4.1/.git/objects/51/9f9df417088d47f9879dc0d79f5f3c0fd75662 differ Binary files ./wordpress-3.4/.git/objects/51/a2186fc259819630ce53adda65ef53644ab92f and ./wordpress-3.4.1/.git/objects/51/a2186fc259819630ce53adda65ef53644ab92f differ Binary files ./wordpress-3.4/.git/objects/51/b1b7a80af9e43f33b09d45f337b985635848a2 and ./wordpress-3.4.1/.git/objects/51/b1b7a80af9e43f33b09d45f337b985635848a2 differ Binary files ./wordpress-3.4/.git/objects/52/4f2ede923ac814d65ea9641dee4c334a5379d6 and ./wordpress-3.4.1/.git/objects/52/4f2ede923ac814d65ea9641dee4c334a5379d6 differ Binary files ./wordpress-3.4/.git/objects/53/1b308d247037cea68234ead01f89be4656f296 and ./wordpress-3.4.1/.git/objects/53/1b308d247037cea68234ead01f89be4656f296 differ Binary files ./wordpress-3.4/.git/objects/53/9cbbdd36c751ef40991cbb303a30ae21cf9432 and ./wordpress-3.4.1/.git/objects/53/9cbbdd36c751ef40991cbb303a30ae21cf9432 differ Binary files ./wordpress-3.4/.git/objects/53/d784a28a4fcafaf2eae96b0040a0342ee33047 and ./wordpress-3.4.1/.git/objects/53/d784a28a4fcafaf2eae96b0040a0342ee33047 differ Binary files ./wordpress-3.4/.git/objects/54/04fb6e3dcafadd21d2ba1c5ce7712c058b19fd and ./wordpress-3.4.1/.git/objects/54/04fb6e3dcafadd21d2ba1c5ce7712c058b19fd differ Binary files ./wordpress-3.4/.git/objects/54/78da90d8a7f67bd7de69c722a7b3fdbc1070cf and ./wordpress-3.4.1/.git/objects/54/78da90d8a7f67bd7de69c722a7b3fdbc1070cf differ Binary files ./wordpress-3.4/.git/objects/54/f967256e404a49d83e5b254551229dd6f4336d and ./wordpress-3.4.1/.git/objects/54/f967256e404a49d83e5b254551229dd6f4336d differ Binary files ./wordpress-3.4/.git/objects/55/06266479185a17aee35d560943bf9c7ba7d346 and ./wordpress-3.4.1/.git/objects/55/06266479185a17aee35d560943bf9c7ba7d346 differ Binary files ./wordpress-3.4/.git/objects/55/59c8c2856e4e70b44d3ddf9f4e9a9030d768a6 and ./wordpress-3.4.1/.git/objects/55/59c8c2856e4e70b44d3ddf9f4e9a9030d768a6 differ Binary files ./wordpress-3.4/.git/objects/55/71481de55f0c6b3bd1636ddac0b0736bfd2512 and ./wordpress-3.4.1/.git/objects/55/71481de55f0c6b3bd1636ddac0b0736bfd2512 differ Binary files ./wordpress-3.4/.git/objects/55/eda6679807a1657550b7f5ce03e97d47bd4edc and ./wordpress-3.4.1/.git/objects/55/eda6679807a1657550b7f5ce03e97d47bd4edc differ Binary files ./wordpress-3.4/.git/objects/56/947216d35ca42243527faf7d97ec7a2323c007 and ./wordpress-3.4.1/.git/objects/56/947216d35ca42243527faf7d97ec7a2323c007 differ Binary files ./wordpress-3.4/.git/objects/56/ce4f42db3344a1d2713ff2445d3fc0a7c5892f and ./wordpress-3.4.1/.git/objects/56/ce4f42db3344a1d2713ff2445d3fc0a7c5892f differ Binary files ./wordpress-3.4/.git/objects/56/e9df0e2531986b1b72df20280fe5a966555e4e and ./wordpress-3.4.1/.git/objects/56/e9df0e2531986b1b72df20280fe5a966555e4e differ Binary files ./wordpress-3.4/.git/objects/56/f3be286198b228b58f7ee4f1d200896aa55162 and ./wordpress-3.4.1/.git/objects/56/f3be286198b228b58f7ee4f1d200896aa55162 differ Binary files ./wordpress-3.4/.git/objects/56/fdf6bcaf73b9894794a8e42fe7afc6e11af69a and ./wordpress-3.4.1/.git/objects/56/fdf6bcaf73b9894794a8e42fe7afc6e11af69a differ Binary files ./wordpress-3.4/.git/objects/57/0444350d6b2e3a9b6dcb637f7531cfd4887d72 and ./wordpress-3.4.1/.git/objects/57/0444350d6b2e3a9b6dcb637f7531cfd4887d72 differ Binary files ./wordpress-3.4/.git/objects/57/1b1dd47ff35324fd9a08a8eb97da93c7f193e5 and ./wordpress-3.4.1/.git/objects/57/1b1dd47ff35324fd9a08a8eb97da93c7f193e5 differ Binary files ./wordpress-3.4/.git/objects/57/3112d55bd28ea14d7544294eab45835feb0299 and ./wordpress-3.4.1/.git/objects/57/3112d55bd28ea14d7544294eab45835feb0299 differ Binary files ./wordpress-3.4/.git/objects/57/c3ed5443d7701a499a49037843db9b75684f5e and ./wordpress-3.4.1/.git/objects/57/c3ed5443d7701a499a49037843db9b75684f5e differ Binary files ./wordpress-3.4/.git/objects/58/16ebb16f14eb6a3115a80fb6458cfc692f422e and ./wordpress-3.4.1/.git/objects/58/16ebb16f14eb6a3115a80fb6458cfc692f422e differ Binary files ./wordpress-3.4/.git/objects/58/335f7f58627d214ae9723f6e9827eb8bf2c57b and ./wordpress-3.4.1/.git/objects/58/335f7f58627d214ae9723f6e9827eb8bf2c57b differ Binary files ./wordpress-3.4/.git/objects/58/5d772d6d3c23626fddfa58c4220b056783e148 and ./wordpress-3.4.1/.git/objects/58/5d772d6d3c23626fddfa58c4220b056783e148 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/58/68d3c18ff757470f3fc2c0d7f56fcc62e04964 ./wordpress-3.4.1/.git/objects/58/68d3c18ff757470f3fc2c0d7f56fcc62e04964 *** ./wordpress-3.4/.git/objects/58/68d3c18ff757470f3fc2c0d7f56fcc62e04964 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/58/68d3c18ff757470f3fc2c0d7f56fcc62e04964 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,3 **** - xEPMo�0ݕ� - �+eC*� ���6.�Hb�A5���i\"9�}� �Ӧ|X��1"|���gL2B��K����a�1 H�PS�wo����b�,b�;N����o3��TA��5�S��=چ<U��A��]`'J�}/:��K_��<^��j - P�N�m�"����L.̡v=G7���������B�_0h�$h���9L:��=i��js���)�=�︽eQ�4�����QA����q�^G�E����:��{��VS��m��oz@ \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/58/796b258d36157a217abbe969cc15e593d048c5 and ./wordpress-3.4.1/.git/objects/58/796b258d36157a217abbe969cc15e593d048c5 differ Binary files ./wordpress-3.4/.git/objects/58/826e7804e2bbc4db836b46607281203f301f00 and ./wordpress-3.4.1/.git/objects/58/826e7804e2bbc4db836b46607281203f301f00 differ Binary files ./wordpress-3.4/.git/objects/58/f6f7de2863ade31832939646d5ae2f83e163ad and ./wordpress-3.4.1/.git/objects/58/f6f7de2863ade31832939646d5ae2f83e163ad differ Binary files ./wordpress-3.4/.git/objects/59/1f017363e15842a68ef2f94e4126c7cfef9c34 and ./wordpress-3.4.1/.git/objects/59/1f017363e15842a68ef2f94e4126c7cfef9c34 differ Binary files ./wordpress-3.4/.git/objects/59/3dfb964f929f560927a160ad59945ad0935824 and ./wordpress-3.4.1/.git/objects/59/3dfb964f929f560927a160ad59945ad0935824 differ Binary files ./wordpress-3.4/.git/objects/59/912d76dae48d9f0d9f40b0dcc80a1f432fa618 and ./wordpress-3.4.1/.git/objects/59/912d76dae48d9f0d9f40b0dcc80a1f432fa618 differ Binary files ./wordpress-3.4/.git/objects/59/b6d3b1402d6cf722061b9b0980b74e08c98a3a and ./wordpress-3.4.1/.git/objects/59/b6d3b1402d6cf722061b9b0980b74e08c98a3a differ Binary files ./wordpress-3.4/.git/objects/59/d3d34709a432aba24ee329a0ca8155814909a3 and ./wordpress-3.4.1/.git/objects/59/d3d34709a432aba24ee329a0ca8155814909a3 differ Binary files ./wordpress-3.4/.git/objects/59/e1cddabfc5c01fc0ea224fc4476d622c92c6ac and ./wordpress-3.4.1/.git/objects/59/e1cddabfc5c01fc0ea224fc4476d622c92c6ac differ Binary files ./wordpress-3.4/.git/objects/59/eb8adb45e740cf71b46c00409122f6c5a4d479 and ./wordpress-3.4.1/.git/objects/59/eb8adb45e740cf71b46c00409122f6c5a4d479 differ Binary files ./wordpress-3.4/.git/objects/5a/3d4d3afb2a58a5b3833e0568b1d3ab75631934 and ./wordpress-3.4.1/.git/objects/5a/3d4d3afb2a58a5b3833e0568b1d3ab75631934 differ Binary files ./wordpress-3.4/.git/objects/5a/414eaf5af82df55a1eb3a278b19b529a866ef0 and ./wordpress-3.4.1/.git/objects/5a/414eaf5af82df55a1eb3a278b19b529a866ef0 differ Binary files ./wordpress-3.4/.git/objects/5a/5aeb6ee733bac02eb737c59d1cee585f381576 and ./wordpress-3.4.1/.git/objects/5a/5aeb6ee733bac02eb737c59d1cee585f381576 differ Binary files ./wordpress-3.4/.git/objects/5a/8db02629f3f1d4aea27298f5d904c8514c4044 and ./wordpress-3.4.1/.git/objects/5a/8db02629f3f1d4aea27298f5d904c8514c4044 differ Binary files ./wordpress-3.4/.git/objects/5b/35936e90eff2a3d989deabc35c3941dc5df229 and ./wordpress-3.4.1/.git/objects/5b/35936e90eff2a3d989deabc35c3941dc5df229 differ Binary files ./wordpress-3.4/.git/objects/5b/acda18d3857a4d1e02263905067c1addafff06 and ./wordpress-3.4.1/.git/objects/5b/acda18d3857a4d1e02263905067c1addafff06 differ Binary files ./wordpress-3.4/.git/objects/5b/b90fd6a49107a321c35b9cee4a7b810314b51f and ./wordpress-3.4.1/.git/objects/5b/b90fd6a49107a321c35b9cee4a7b810314b51f differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/5b/f085da2fa001efd49571267d6cfa4a46e3cea8 ./wordpress-3.4.1/.git/objects/5b/f085da2fa001efd49571267d6cfa4a46e3cea8 *** ./wordpress-3.4/.git/objects/5b/f085da2fa001efd49571267d6cfa4a46e3cea8 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/5b/f085da2fa001efd49571267d6cfa4a46e3cea8 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,6 **** - x�UKO�@���C��C+$�PT�'�3��f=��qlk�N�����n�IE{�|��|�f2��|�����R�gF�F�*%we^��(H�BU�i/����S���b` - �O@ogE���d7l�y]��Fg8� iO�d&�b�˦H�V��J�{ �Ԧ\�{X�s$����ɝ�� � |Ka����h�p�D���pKad���")J�T�,��5��\���'���kUcd#�w9 - 퐰f�ʀ���ٰ�J!�o�ӳ3�L�ӡ&��WB ��hn�e���@�����S�c.+y��GH��ky�A�I)�%&�5�d�q�Q��2��V���RH - �J�N��9=�ۤ�K�I��^�h<O�itA,� - ����yW+f���1;;���6�øҸ����w��E9�]/p�T�����·8C� Gz�2��!��ь�T=�9�Z'c#�U.$�ǟ'b�ގ�^����'��Uhi������~�#���q���d�B�dr�Nt�Mtw'[�u�5RUc���q��UY+�B���'b&�9�����#���T��MH �i�+ט��F�Ea�_Z��~R�6u��IwO.�$QGt�9 ���+���ɇ��]��,˦Ƥ\���0o�L�I�1 - ���?�����n$��'N���ۅ������R.�M���4 >4&��hʓt�����0���A� o� m� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/5c/6243f1cfaf14bc08c5541a299b7330f2d486ed and ./wordpress-3.4.1/.git/objects/5c/6243f1cfaf14bc08c5541a299b7330f2d486ed differ Binary files ./wordpress-3.4/.git/objects/5c/ed90166f595bb433386a2214967fa258705b28 and ./wordpress-3.4.1/.git/objects/5c/ed90166f595bb433386a2214967fa258705b28 differ Binary files ./wordpress-3.4/.git/objects/5c/ee055307244c75e3fc6e194071f28839bd6366 and ./wordpress-3.4.1/.git/objects/5c/ee055307244c75e3fc6e194071f28839bd6366 differ Binary files ./wordpress-3.4/.git/objects/5c/fbefeeb0f88607586150397772a5a5612bd07f and ./wordpress-3.4.1/.git/objects/5c/fbefeeb0f88607586150397772a5a5612bd07f differ Binary files ./wordpress-3.4/.git/objects/5d/1671fd907511409417148e38ff6efd6b78e31f and ./wordpress-3.4.1/.git/objects/5d/1671fd907511409417148e38ff6efd6b78e31f differ Binary files ./wordpress-3.4/.git/objects/5d/3978106a2da37441ed17c9d05383b367570d46 and ./wordpress-3.4.1/.git/objects/5d/3978106a2da37441ed17c9d05383b367570d46 differ Binary files ./wordpress-3.4/.git/objects/5d/4a6d34ed9f1d615469d94822f56201333aa009 and ./wordpress-3.4.1/.git/objects/5d/4a6d34ed9f1d615469d94822f56201333aa009 differ Binary files ./wordpress-3.4/.git/objects/5d/51ce3468153133e908e91f05e04998af9cab56 and ./wordpress-3.4.1/.git/objects/5d/51ce3468153133e908e91f05e04998af9cab56 differ Binary files ./wordpress-3.4/.git/objects/5d/7766d915cc91787fd5dcba063bf8433f889c64 and ./wordpress-3.4.1/.git/objects/5d/7766d915cc91787fd5dcba063bf8433f889c64 differ Binary files ./wordpress-3.4/.git/objects/5d/905efc4743758f5acbfc85d14a0e4cb46ef373 and ./wordpress-3.4.1/.git/objects/5d/905efc4743758f5acbfc85d14a0e4cb46ef373 differ Binary files ./wordpress-3.4/.git/objects/5d/9205fe6e7236d0e072999313a227802caf068d and ./wordpress-3.4.1/.git/objects/5d/9205fe6e7236d0e072999313a227802caf068d differ Binary files ./wordpress-3.4/.git/objects/5d/af9bb21a7b61eac59379531370b418a7b2f2fb and ./wordpress-3.4.1/.git/objects/5d/af9bb21a7b61eac59379531370b418a7b2f2fb differ Binary files ./wordpress-3.4/.git/objects/5d/d460e301ad57298a007ec044a10ca9cd9670b6 and ./wordpress-3.4.1/.git/objects/5d/d460e301ad57298a007ec044a10ca9cd9670b6 differ Binary files ./wordpress-3.4/.git/objects/5d/da4d164fb572c67702190dd08e0d5e9f932dcf and ./wordpress-3.4.1/.git/objects/5d/da4d164fb572c67702190dd08e0d5e9f932dcf differ Binary files ./wordpress-3.4/.git/objects/5d/ed24ca16ee4cdc759272dcdada91006028d892 and ./wordpress-3.4.1/.git/objects/5d/ed24ca16ee4cdc759272dcdada91006028d892 differ Binary files ./wordpress-3.4/.git/objects/5e/5e740e9b4226e3824caebcdd2e7187d6dd91b0 and ./wordpress-3.4.1/.git/objects/5e/5e740e9b4226e3824caebcdd2e7187d6dd91b0 differ Binary files ./wordpress-3.4/.git/objects/5e/6a619bc25f5f6ba194e5e9eec671b830a6414c and ./wordpress-3.4.1/.git/objects/5e/6a619bc25f5f6ba194e5e9eec671b830a6414c differ Binary files ./wordpress-3.4/.git/objects/5e/7e4265f8f40117642214da16e3cc88feb553a2 and ./wordpress-3.4.1/.git/objects/5e/7e4265f8f40117642214da16e3cc88feb553a2 differ Binary files ./wordpress-3.4/.git/objects/5f/17b528d1b94f28fceed34cc723693ee3f65888 and ./wordpress-3.4.1/.git/objects/5f/17b528d1b94f28fceed34cc723693ee3f65888 differ Binary files ./wordpress-3.4/.git/objects/5f/1f5851199320cccc0f6187155706a84eeeeb76 and ./wordpress-3.4.1/.git/objects/5f/1f5851199320cccc0f6187155706a84eeeeb76 differ Binary files ./wordpress-3.4/.git/objects/5f/51b606b5fb8eb4cc512e88897ec6e877535a76 and ./wordpress-3.4.1/.git/objects/5f/51b606b5fb8eb4cc512e88897ec6e877535a76 differ Binary files ./wordpress-3.4/.git/objects/5f/6ccddfb8a10a1b0e302f5ac74b561f03cff199 and ./wordpress-3.4.1/.git/objects/5f/6ccddfb8a10a1b0e302f5ac74b561f03cff199 differ Binary files ./wordpress-3.4/.git/objects/5f/741f691caa89c8b7f9d18773ed263c2640fef0 and ./wordpress-3.4.1/.git/objects/5f/741f691caa89c8b7f9d18773ed263c2640fef0 differ Binary files ./wordpress-3.4/.git/objects/5f/9c165e861c8718e4f2d3537d05300452ee216d and ./wordpress-3.4.1/.git/objects/5f/9c165e861c8718e4f2d3537d05300452ee216d differ Binary files ./wordpress-3.4/.git/objects/5f/b9af2e0c6cc72482867a84a1c62c8f2e682ddc and ./wordpress-3.4.1/.git/objects/5f/b9af2e0c6cc72482867a84a1c62c8f2e682ddc differ Binary files ./wordpress-3.4/.git/objects/5f/be4a70aac1e20394c50dedee1bfcf49cb4e419 and ./wordpress-3.4.1/.git/objects/5f/be4a70aac1e20394c50dedee1bfcf49cb4e419 differ Binary files ./wordpress-3.4/.git/objects/5f/c73fcbbf8c65df2b8383f3d2e23aa57bcbffac and ./wordpress-3.4.1/.git/objects/5f/c73fcbbf8c65df2b8383f3d2e23aa57bcbffac differ Binary files ./wordpress-3.4/.git/objects/60/0805a2d14019a5041f63db4765273e02b6726e and ./wordpress-3.4.1/.git/objects/60/0805a2d14019a5041f63db4765273e02b6726e differ Binary files ./wordpress-3.4/.git/objects/60/272eeb248c4d2eaf3d3a4c2c01f933bc71037b and ./wordpress-3.4.1/.git/objects/60/272eeb248c4d2eaf3d3a4c2c01f933bc71037b differ Binary files ./wordpress-3.4/.git/objects/60/57cc3a690e6aa30c579c0954fadf0de6ffd5fb and ./wordpress-3.4.1/.git/objects/60/57cc3a690e6aa30c579c0954fadf0de6ffd5fb differ Binary files ./wordpress-3.4/.git/objects/60/a6d5d96fe84866bbfac89b609ccf53f3bd5be6 and ./wordpress-3.4.1/.git/objects/60/a6d5d96fe84866bbfac89b609ccf53f3bd5be6 differ Binary files ./wordpress-3.4/.git/objects/60/d013d3ad50bccafd8251ad561366f550125233 and ./wordpress-3.4.1/.git/objects/60/d013d3ad50bccafd8251ad561366f550125233 differ Binary files ./wordpress-3.4/.git/objects/60/dc2d8230f43eb10098bf40e9cfb4f3a8bfbb7a and ./wordpress-3.4.1/.git/objects/60/dc2d8230f43eb10098bf40e9cfb4f3a8bfbb7a differ Binary files ./wordpress-3.4/.git/objects/60/ff7cda955b8a54ed567a8f3bd404ea10da6134 and ./wordpress-3.4.1/.git/objects/60/ff7cda955b8a54ed567a8f3bd404ea10da6134 differ Binary files ./wordpress-3.4/.git/objects/61/28495d88c08007cc799d0c71f59ff83e310330 and ./wordpress-3.4.1/.git/objects/61/28495d88c08007cc799d0c71f59ff83e310330 differ Binary files ./wordpress-3.4/.git/objects/61/36db535f9ef7d757449a5e96843aa9606a7530 and ./wordpress-3.4.1/.git/objects/61/36db535f9ef7d757449a5e96843aa9606a7530 differ Binary files ./wordpress-3.4/.git/objects/61/3cff8236016fcd1c00c579356a3962e271e3dc and ./wordpress-3.4.1/.git/objects/61/3cff8236016fcd1c00c579356a3962e271e3dc differ Binary files ./wordpress-3.4/.git/objects/61/4658c219d1e64efb1c920fd4798a0e334837a6 and ./wordpress-3.4.1/.git/objects/61/4658c219d1e64efb1c920fd4798a0e334837a6 differ Binary files ./wordpress-3.4/.git/objects/61/71510f8f46d1ad17e17bc9a74553308aa2cbc1 and ./wordpress-3.4.1/.git/objects/61/71510f8f46d1ad17e17bc9a74553308aa2cbc1 differ Binary files ./wordpress-3.4/.git/objects/61/bd538b1ac75f388d3ae22e8cddbda590cacd45 and ./wordpress-3.4.1/.git/objects/61/bd538b1ac75f388d3ae22e8cddbda590cacd45 differ Binary files ./wordpress-3.4/.git/objects/61/c8956fc21e73b1b366cac47e02a416db64df55 and ./wordpress-3.4.1/.git/objects/61/c8956fc21e73b1b366cac47e02a416db64df55 differ Binary files ./wordpress-3.4/.git/objects/61/e775ed620d6976f593bbdf248915d9b51d1546 and ./wordpress-3.4.1/.git/objects/61/e775ed620d6976f593bbdf248915d9b51d1546 differ Binary files ./wordpress-3.4/.git/objects/62/01b00451c1d8b447973809cd9b8ad5a1f25a39 and ./wordpress-3.4.1/.git/objects/62/01b00451c1d8b447973809cd9b8ad5a1f25a39 differ Binary files ./wordpress-3.4/.git/objects/62/200328fddc2de0805db758fb758bcb4d65d8e2 and ./wordpress-3.4.1/.git/objects/62/200328fddc2de0805db758fb758bcb4d65d8e2 differ Binary files ./wordpress-3.4/.git/objects/62/46176b88399343f469276f4e8242223526f74d and ./wordpress-3.4.1/.git/objects/62/46176b88399343f469276f4e8242223526f74d differ Binary files ./wordpress-3.4/.git/objects/62/67a9980d8c69adaf9ff2dc191a71f975c21b87 and ./wordpress-3.4.1/.git/objects/62/67a9980d8c69adaf9ff2dc191a71f975c21b87 differ Binary files ./wordpress-3.4/.git/objects/62/8baa4d6c426c7253861e023fb4a1f0e393f838 and ./wordpress-3.4.1/.git/objects/62/8baa4d6c426c7253861e023fb4a1f0e393f838 differ Binary files ./wordpress-3.4/.git/objects/62/e8f32d575919be0a248ac282bd4457bdf3c288 and ./wordpress-3.4.1/.git/objects/62/e8f32d575919be0a248ac282bd4457bdf3c288 differ Binary files ./wordpress-3.4/.git/objects/62/f7bce6b3e4eb90bd232435409545ae6ce5936a and ./wordpress-3.4.1/.git/objects/62/f7bce6b3e4eb90bd232435409545ae6ce5936a differ Binary files ./wordpress-3.4/.git/objects/63/1fa0ec874001708bfa20500145e5e7c05cd0f9 and ./wordpress-3.4.1/.git/objects/63/1fa0ec874001708bfa20500145e5e7c05cd0f9 differ Binary files ./wordpress-3.4/.git/objects/63/b2f66df0879543afd78600e2398cd999a57227 and ./wordpress-3.4.1/.git/objects/63/b2f66df0879543afd78600e2398cd999a57227 differ Binary files ./wordpress-3.4/.git/objects/63/f718dfb6503f4791e400cb3c9820f817d59788 and ./wordpress-3.4.1/.git/objects/63/f718dfb6503f4791e400cb3c9820f817d59788 differ Binary files ./wordpress-3.4/.git/objects/64/1a9e3d314f4ea051692a2274aeb281456f5df9 and ./wordpress-3.4.1/.git/objects/64/1a9e3d314f4ea051692a2274aeb281456f5df9 differ Binary files ./wordpress-3.4/.git/objects/64/32dbedb3febe47539bafe297dba1b9c8eecf5b and ./wordpress-3.4.1/.git/objects/64/32dbedb3febe47539bafe297dba1b9c8eecf5b differ Binary files ./wordpress-3.4/.git/objects/64/a60d46b31ed799fb52a0cdd1ef3bbfab35966b and ./wordpress-3.4.1/.git/objects/64/a60d46b31ed799fb52a0cdd1ef3bbfab35966b differ Binary files ./wordpress-3.4/.git/objects/64/c7bab94e75de9088966028822c60bc2a7089c9 and ./wordpress-3.4.1/.git/objects/64/c7bab94e75de9088966028822c60bc2a7089c9 differ Binary files ./wordpress-3.4/.git/objects/64/e41704c09d7bfccf07ac6c84493d656c960a45 and ./wordpress-3.4.1/.git/objects/64/e41704c09d7bfccf07ac6c84493d656c960a45 differ Binary files ./wordpress-3.4/.git/objects/65/2e172df904de212617f1093127225591d06f6b and ./wordpress-3.4.1/.git/objects/65/2e172df904de212617f1093127225591d06f6b differ Binary files ./wordpress-3.4/.git/objects/65/3ed540dc8db6c8b5bae39e3a5915e275445d64 and ./wordpress-3.4.1/.git/objects/65/3ed540dc8db6c8b5bae39e3a5915e275445d64 differ Binary files ./wordpress-3.4/.git/objects/65/46621014d209aa98098acbeeedbb5143c914ea and ./wordpress-3.4.1/.git/objects/65/46621014d209aa98098acbeeedbb5143c914ea differ Binary files ./wordpress-3.4/.git/objects/65/531c84122878123c86672f71e2954cd0511fe4 and ./wordpress-3.4.1/.git/objects/65/531c84122878123c86672f71e2954cd0511fe4 differ Binary files ./wordpress-3.4/.git/objects/65/6ce1eee606d2321e5ce1833898b449b3084a12 and ./wordpress-3.4.1/.git/objects/65/6ce1eee606d2321e5ce1833898b449b3084a12 differ Binary files ./wordpress-3.4/.git/objects/65/f9ee99383c5b3b3554c0676a2a0a90a6054ea0 and ./wordpress-3.4.1/.git/objects/65/f9ee99383c5b3b3554c0676a2a0a90a6054ea0 differ Binary files ./wordpress-3.4/.git/objects/66/79e11d24730167d0305e972a220b67870541ee and ./wordpress-3.4.1/.git/objects/66/79e11d24730167d0305e972a220b67870541ee differ Binary files ./wordpress-3.4/.git/objects/66/8e71aaadaff63b151f68d30052d6b40649aaf3 and ./wordpress-3.4.1/.git/objects/66/8e71aaadaff63b151f68d30052d6b40649aaf3 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/66/b8bbfd406c33e7c038fb61d8b6f6527a962c85 ./wordpress-3.4.1/.git/objects/66/b8bbfd406c33e7c038fb61d8b6f6527a962c85 *** ./wordpress-3.4/.git/objects/66/b8bbfd406c33e7c038fb61d8b6f6527a962c85 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/66/b8bbfd406c33e7c038fb61d8b6f6527a962c85 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - x�S���0�$��k+�n�VU�|Xu�k��jW�&����6 - ���!�(R03�y�ޛ�0���j����,�8�]�A���)��yڔ�rS�D|H��s\��(c��֮��Q� g�p���)U��.��!�M��6�$�[XkJº�l�P�<���PJ �m���1:b۲E�!�8��Xh�C�,W���.j}�3�N�#�V��.���������)4��y�a=;�_,�0��������������V�Ɩ$a;��F�3�|\�#��Rp1F��;��c�Qn����"��n�+�{�D�Ry�1���b.�kq@�Z�%]U�������)��~}]>�u��\�^�}P�&�.�.��S�b4�LG��n�����R�V˩]*S���zO�eP��t�N�v�P� wY^�hY��3빾�X���S�K����2�ƃ߀K�ӵDt�q��'�D��jܐ�ij��{y��e_i�l��M�d���n�U^���'�H�0�!� Y)(��q|�����W��^��I�� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/66/e3bbc681e13db6157de9819ab8c5163ae11815 and ./wordpress-3.4.1/.git/objects/66/e3bbc681e13db6157de9819ab8c5163ae11815 differ Binary files ./wordpress-3.4/.git/objects/66/eddaa7fc2a7c7528ddbde6a65647f79418e40f and ./wordpress-3.4.1/.git/objects/66/eddaa7fc2a7c7528ddbde6a65647f79418e40f differ Binary files ./wordpress-3.4/.git/objects/66/ff71fc36b6480225db2d9fe94a328cfbbeb477 and ./wordpress-3.4.1/.git/objects/66/ff71fc36b6480225db2d9fe94a328cfbbeb477 differ Binary files ./wordpress-3.4/.git/objects/67/0648a2c38d5585eeb47f527001cfc61e4b7a67 and ./wordpress-3.4.1/.git/objects/67/0648a2c38d5585eeb47f527001cfc61e4b7a67 differ Binary files ./wordpress-3.4/.git/objects/67/09ba7bde6316beb2743ebbf496286ea1776a16 and ./wordpress-3.4.1/.git/objects/67/09ba7bde6316beb2743ebbf496286ea1776a16 differ Binary files ./wordpress-3.4/.git/objects/67/36e6b009f4bd3c24b9a1cc5a5292d2e34b9dff and ./wordpress-3.4.1/.git/objects/67/36e6b009f4bd3c24b9a1cc5a5292d2e34b9dff differ Binary files ./wordpress-3.4/.git/objects/67/564fd65000e65dd76aeeb19273743af0131975 and ./wordpress-3.4.1/.git/objects/67/564fd65000e65dd76aeeb19273743af0131975 differ Binary files ./wordpress-3.4/.git/objects/67/5a76a74fd6d5ee4bd5f1c0721fc4cc82daeb18 and ./wordpress-3.4.1/.git/objects/67/5a76a74fd6d5ee4bd5f1c0721fc4cc82daeb18 differ Binary files ./wordpress-3.4/.git/objects/68/3c1479a8759a4136613358c28034227ed48ee7 and ./wordpress-3.4.1/.git/objects/68/3c1479a8759a4136613358c28034227ed48ee7 differ Binary files ./wordpress-3.4/.git/objects/68/3c6a730ee529c8605c21cf6e06b1d0962a1ee2 and ./wordpress-3.4.1/.git/objects/68/3c6a730ee529c8605c21cf6e06b1d0962a1ee2 differ Binary files ./wordpress-3.4/.git/objects/68/7b241eec371858a6b084712623ee9e1f89e2c7 and ./wordpress-3.4.1/.git/objects/68/7b241eec371858a6b084712623ee9e1f89e2c7 differ Binary files ./wordpress-3.4/.git/objects/68/9479c9fb2dfc2df6487b0a5b6c8488107a0eed and ./wordpress-3.4.1/.git/objects/68/9479c9fb2dfc2df6487b0a5b6c8488107a0eed differ Binary files ./wordpress-3.4/.git/objects/68/f7ed6cf0d44dc9acfce5ef4feb2e3015af5117 and ./wordpress-3.4.1/.git/objects/68/f7ed6cf0d44dc9acfce5ef4feb2e3015af5117 differ Binary files ./wordpress-3.4/.git/objects/69/6ff15d87901ddfe9bf16d1ed8b1902a811f6c0 and ./wordpress-3.4.1/.git/objects/69/6ff15d87901ddfe9bf16d1ed8b1902a811f6c0 differ Binary files ./wordpress-3.4/.git/objects/69/77bffad14745086a1effac05c7ced3806da154 and ./wordpress-3.4.1/.git/objects/69/77bffad14745086a1effac05c7ced3806da154 differ Binary files ./wordpress-3.4/.git/objects/69/8f2a0b5e51e15f91fa6b7c4eca216672fcac56 and ./wordpress-3.4.1/.git/objects/69/8f2a0b5e51e15f91fa6b7c4eca216672fcac56 differ Binary files ./wordpress-3.4/.git/objects/69/a16271dfae62611e92735a7db7f049d93769d6 and ./wordpress-3.4.1/.git/objects/69/a16271dfae62611e92735a7db7f049d93769d6 differ Binary files ./wordpress-3.4/.git/objects/69/a86c1378aec5a6185c591456f7a6d9c739b5b0 and ./wordpress-3.4.1/.git/objects/69/a86c1378aec5a6185c591456f7a6d9c739b5b0 differ Binary files ./wordpress-3.4/.git/objects/69/e0352482807c899f16add0e6f6b618b55b1420 and ./wordpress-3.4.1/.git/objects/69/e0352482807c899f16add0e6f6b618b55b1420 differ Binary files ./wordpress-3.4/.git/objects/6a/1b41cdaf417a47e8db12cbc3a58126b71e4056 and ./wordpress-3.4.1/.git/objects/6a/1b41cdaf417a47e8db12cbc3a58126b71e4056 differ Binary files ./wordpress-3.4/.git/objects/6a/2dfb8cbcc5c7e13d9f0b951b98f086437889f8 and ./wordpress-3.4.1/.git/objects/6a/2dfb8cbcc5c7e13d9f0b951b98f086437889f8 differ Binary files ./wordpress-3.4/.git/objects/6a/48f46908e4e9250c52bcbfbf75ee7ec91bfbb1 and ./wordpress-3.4.1/.git/objects/6a/48f46908e4e9250c52bcbfbf75ee7ec91bfbb1 differ Binary files ./wordpress-3.4/.git/objects/6a/567348ced8f40804cf9bbde525c0b53fea5b7c and ./wordpress-3.4.1/.git/objects/6a/567348ced8f40804cf9bbde525c0b53fea5b7c differ Binary files ./wordpress-3.4/.git/objects/6a/85f4cb7dba7995a46bfd042792fe951889312d and ./wordpress-3.4.1/.git/objects/6a/85f4cb7dba7995a46bfd042792fe951889312d differ Binary files ./wordpress-3.4/.git/objects/6a/d58d1d62c58fac2a85c72bcd0ff21f2210113b and ./wordpress-3.4.1/.git/objects/6a/d58d1d62c58fac2a85c72bcd0ff21f2210113b differ Binary files ./wordpress-3.4/.git/objects/6b/342c8576d046ca6fd1d65fb22b5239b1f24674 and ./wordpress-3.4.1/.git/objects/6b/342c8576d046ca6fd1d65fb22b5239b1f24674 differ Binary files ./wordpress-3.4/.git/objects/6b/4b032389d13fc16f39e59eaa9f73dee6db7ef4 and ./wordpress-3.4.1/.git/objects/6b/4b032389d13fc16f39e59eaa9f73dee6db7ef4 differ Binary files ./wordpress-3.4/.git/objects/6b/56045010ffbf59bc00fb109ec4ac2fadccaa2e and ./wordpress-3.4.1/.git/objects/6b/56045010ffbf59bc00fb109ec4ac2fadccaa2e differ Binary files ./wordpress-3.4/.git/objects/6b/67efae84818d3bbc0dd712bfbbb03a44934702 and ./wordpress-3.4.1/.git/objects/6b/67efae84818d3bbc0dd712bfbbb03a44934702 differ Binary files ./wordpress-3.4/.git/objects/6b/b48c0fca4ee773b3374750894181c250d9aca0 and ./wordpress-3.4.1/.git/objects/6b/b48c0fca4ee773b3374750894181c250d9aca0 differ Binary files ./wordpress-3.4/.git/objects/6b/f437acc4b26a9071ba329c6ecb4e3b79c2c857 and ./wordpress-3.4.1/.git/objects/6b/f437acc4b26a9071ba329c6ecb4e3b79c2c857 differ Binary files ./wordpress-3.4/.git/objects/6b/f8797940cd1af1c819597b0f9f5ef52ffcf505 and ./wordpress-3.4.1/.git/objects/6b/f8797940cd1af1c819597b0f9f5ef52ffcf505 differ Binary files ./wordpress-3.4/.git/objects/6c/51d075eeab08c96cb09c4b7ebe47a4e7fad0cd and ./wordpress-3.4.1/.git/objects/6c/51d075eeab08c96cb09c4b7ebe47a4e7fad0cd differ Binary files ./wordpress-3.4/.git/objects/6c/589ec3713bad3bba2793e0fa07da1939640ed1 and ./wordpress-3.4.1/.git/objects/6c/589ec3713bad3bba2793e0fa07da1939640ed1 differ Binary files ./wordpress-3.4/.git/objects/6c/82a1dc66c875b287ce666f3232e9d678324d95 and ./wordpress-3.4.1/.git/objects/6c/82a1dc66c875b287ce666f3232e9d678324d95 differ Binary files ./wordpress-3.4/.git/objects/6c/f1da4aacaa8aad7cec2551c720ef9117456f05 and ./wordpress-3.4.1/.git/objects/6c/f1da4aacaa8aad7cec2551c720ef9117456f05 differ Binary files ./wordpress-3.4/.git/objects/6d/2f495e38cde56d9d21ddba692f124320ca9b8c and ./wordpress-3.4.1/.git/objects/6d/2f495e38cde56d9d21ddba692f124320ca9b8c differ Binary files ./wordpress-3.4/.git/objects/6d/d03a4ce4dda310479810641b48d8815372b7f9 and ./wordpress-3.4.1/.git/objects/6d/d03a4ce4dda310479810641b48d8815372b7f9 differ Binary files ./wordpress-3.4/.git/objects/6d/e7abf538c1c428671d40401bd3df6e0188a429 and ./wordpress-3.4.1/.git/objects/6d/e7abf538c1c428671d40401bd3df6e0188a429 differ Binary files ./wordpress-3.4/.git/objects/6d/fb577e85edc4f199823469fe5a8286c3d849b8 and ./wordpress-3.4.1/.git/objects/6d/fb577e85edc4f199823469fe5a8286c3d849b8 differ Binary files ./wordpress-3.4/.git/objects/6e/25a1fa3efa6518da163c780af1ff8b10cdd0bb and ./wordpress-3.4.1/.git/objects/6e/25a1fa3efa6518da163c780af1ff8b10cdd0bb differ Binary files ./wordpress-3.4/.git/objects/6e/50e2eecdb54d2ee3a14c39547a6b454524f98d and ./wordpress-3.4.1/.git/objects/6e/50e2eecdb54d2ee3a14c39547a6b454524f98d differ Binary files ./wordpress-3.4/.git/objects/6e/56e026a920ba5cc4133565d6bfbc2ef9f18903 and ./wordpress-3.4.1/.git/objects/6e/56e026a920ba5cc4133565d6bfbc2ef9f18903 differ Binary files ./wordpress-3.4/.git/objects/6e/5d3b8116f1545b0d72427c4297180a3eba3c56 and ./wordpress-3.4.1/.git/objects/6e/5d3b8116f1545b0d72427c4297180a3eba3c56 differ Binary files ./wordpress-3.4/.git/objects/6e/684f48b342b363654d66273e1810b302689bb6 and ./wordpress-3.4.1/.git/objects/6e/684f48b342b363654d66273e1810b302689bb6 differ Binary files ./wordpress-3.4/.git/objects/6e/7b676b345588a734dce002843a442520931170 and ./wordpress-3.4.1/.git/objects/6e/7b676b345588a734dce002843a442520931170 differ Binary files ./wordpress-3.4/.git/objects/6e/7d5f0d0726e8ff692b902dccf85cb311030e63 and ./wordpress-3.4.1/.git/objects/6e/7d5f0d0726e8ff692b902dccf85cb311030e63 differ Binary files ./wordpress-3.4/.git/objects/6f/1e765f862317b0fef4dfe828acdf400d918a06 and ./wordpress-3.4.1/.git/objects/6f/1e765f862317b0fef4dfe828acdf400d918a06 differ Binary files ./wordpress-3.4/.git/objects/6f/62fe606dd974e5235a8a9125943d895f2a4b15 and ./wordpress-3.4.1/.git/objects/6f/62fe606dd974e5235a8a9125943d895f2a4b15 differ Binary files ./wordpress-3.4/.git/objects/6f/e25de090fae155f6e109463c6b78f26baccb3b and ./wordpress-3.4.1/.git/objects/6f/e25de090fae155f6e109463c6b78f26baccb3b differ Binary files ./wordpress-3.4/.git/objects/70/9e7f97c881b330529c0000e51fd7fbd27eb5f6 and ./wordpress-3.4.1/.git/objects/70/9e7f97c881b330529c0000e51fd7fbd27eb5f6 differ Binary files ./wordpress-3.4/.git/objects/70/b5505331330db0932fddeadb627f823e217f69 and ./wordpress-3.4.1/.git/objects/70/b5505331330db0932fddeadb627f823e217f69 differ Binary files ./wordpress-3.4/.git/objects/71/0049a36e4c7af5634f849dc08b956d9857ad80 and ./wordpress-3.4.1/.git/objects/71/0049a36e4c7af5634f849dc08b956d9857ad80 differ Binary files ./wordpress-3.4/.git/objects/71/19018b1fe6e7d6881355ff48a34032367133e4 and ./wordpress-3.4.1/.git/objects/71/19018b1fe6e7d6881355ff48a34032367133e4 differ Binary files ./wordpress-3.4/.git/objects/71/f43430ee759b6cfa9aea18e37dbcf8ad96ce0d and ./wordpress-3.4.1/.git/objects/71/f43430ee759b6cfa9aea18e37dbcf8ad96ce0d differ Binary files ./wordpress-3.4/.git/objects/71/fbb68a644154a18bd6cd0fc3099e751f6cf42f and ./wordpress-3.4.1/.git/objects/71/fbb68a644154a18bd6cd0fc3099e751f6cf42f differ Binary files ./wordpress-3.4/.git/objects/72/96cb6766c40e7388b2a11e97db19c94a52041d and ./wordpress-3.4.1/.git/objects/72/96cb6766c40e7388b2a11e97db19c94a52041d differ Binary files ./wordpress-3.4/.git/objects/72/c336b98a5e220153dccfe638c372e100542946 and ./wordpress-3.4.1/.git/objects/72/c336b98a5e220153dccfe638c372e100542946 differ Binary files ./wordpress-3.4/.git/objects/72/ea7ccb5321d5384d70437cfaac73011237901e and ./wordpress-3.4.1/.git/objects/72/ea7ccb5321d5384d70437cfaac73011237901e differ Binary files ./wordpress-3.4/.git/objects/73/34a85dcbd9631a034bfd0189dbe5871a44a714 and ./wordpress-3.4.1/.git/objects/73/34a85dcbd9631a034bfd0189dbe5871a44a714 differ Binary files ./wordpress-3.4/.git/objects/73/6fc5a223b6105a5c102354b39357a447caeeb2 and ./wordpress-3.4.1/.git/objects/73/6fc5a223b6105a5c102354b39357a447caeeb2 differ Binary files ./wordpress-3.4/.git/objects/73/92fb664c08a6350e59eb6ac6bc2013af03428c and ./wordpress-3.4.1/.git/objects/73/92fb664c08a6350e59eb6ac6bc2013af03428c differ Binary files ./wordpress-3.4/.git/objects/73/9b888f32573b02c0e4535df814bf949f068745 and ./wordpress-3.4.1/.git/objects/73/9b888f32573b02c0e4535df814bf949f068745 differ Binary files ./wordpress-3.4/.git/objects/73/dbb48fef968e42ec95646cd1199e033443af60 and ./wordpress-3.4.1/.git/objects/73/dbb48fef968e42ec95646cd1199e033443af60 differ Binary files ./wordpress-3.4/.git/objects/74/23cf9214919c186fba6b08634ef701a2c80118 and ./wordpress-3.4.1/.git/objects/74/23cf9214919c186fba6b08634ef701a2c80118 differ Binary files ./wordpress-3.4/.git/objects/74/4060248eab4667410954a13c632480efb7750f and ./wordpress-3.4.1/.git/objects/74/4060248eab4667410954a13c632480efb7750f differ Binary files ./wordpress-3.4/.git/objects/74/5616865972fa8a501c83036e124c877dacdec9 and ./wordpress-3.4.1/.git/objects/74/5616865972fa8a501c83036e124c877dacdec9 differ Binary files ./wordpress-3.4/.git/objects/74/593de9c214449d3553cfb93e495b5eac89425b and ./wordpress-3.4.1/.git/objects/74/593de9c214449d3553cfb93e495b5eac89425b differ Binary files ./wordpress-3.4/.git/objects/74/7b228d535897b2aa674c412f35371dbaddf966 and ./wordpress-3.4.1/.git/objects/74/7b228d535897b2aa674c412f35371dbaddf966 differ Binary files ./wordpress-3.4/.git/objects/74/ad1105d7147b866dd1f631bd80bcac13a026d8 and ./wordpress-3.4.1/.git/objects/74/ad1105d7147b866dd1f631bd80bcac13a026d8 differ Binary files ./wordpress-3.4/.git/objects/75/85793df7ea5594ce41b65fce68a83f2cd423d2 and ./wordpress-3.4.1/.git/objects/75/85793df7ea5594ce41b65fce68a83f2cd423d2 differ Binary files ./wordpress-3.4/.git/objects/75/bd625398f956d8018de4d8b050590a27863c54 and ./wordpress-3.4.1/.git/objects/75/bd625398f956d8018de4d8b050590a27863c54 differ Binary files ./wordpress-3.4/.git/objects/75/c4522b7b2588d519b2929360f191609118cd45 and ./wordpress-3.4.1/.git/objects/75/c4522b7b2588d519b2929360f191609118cd45 differ Binary files ./wordpress-3.4/.git/objects/75/cb2b1790d716fbd5416086a505cdaea62e1ca8 and ./wordpress-3.4.1/.git/objects/75/cb2b1790d716fbd5416086a505cdaea62e1ca8 differ Binary files ./wordpress-3.4/.git/objects/75/f3c6079381fe133b10a048e92016e80bec514e and ./wordpress-3.4.1/.git/objects/75/f3c6079381fe133b10a048e92016e80bec514e differ Binary files ./wordpress-3.4/.git/objects/76/0d0290fd944b435a9c22ffe8e4fb5cc1048a8c and ./wordpress-3.4.1/.git/objects/76/0d0290fd944b435a9c22ffe8e4fb5cc1048a8c differ Binary files ./wordpress-3.4/.git/objects/76/5bbffcfce17850a80c550a0ec86e7df801d546 and ./wordpress-3.4.1/.git/objects/76/5bbffcfce17850a80c550a0ec86e7df801d546 differ Binary files ./wordpress-3.4/.git/objects/76/e0ce6ba1b15724ef8483ff2651e2a13962405d and ./wordpress-3.4.1/.git/objects/76/e0ce6ba1b15724ef8483ff2651e2a13962405d differ Binary files ./wordpress-3.4/.git/objects/77/09bf14ccbbaf1493e3017f2de9cb78bf7a76ca and ./wordpress-3.4.1/.git/objects/77/09bf14ccbbaf1493e3017f2de9cb78bf7a76ca differ Binary files ./wordpress-3.4/.git/objects/77/5a7a0329ea8be6b070b9491f3b4acaaac653f8 and ./wordpress-3.4.1/.git/objects/77/5a7a0329ea8be6b070b9491f3b4acaaac653f8 differ Binary files ./wordpress-3.4/.git/objects/77/f00762eb26c6d549f5d0a46a197ff73c4a4314 and ./wordpress-3.4.1/.git/objects/77/f00762eb26c6d549f5d0a46a197ff73c4a4314 differ Binary files ./wordpress-3.4/.git/objects/78/211901036984170c28fc6721f12f19ac45a377 and ./wordpress-3.4.1/.git/objects/78/211901036984170c28fc6721f12f19ac45a377 differ Binary files ./wordpress-3.4/.git/objects/78/4ac24f1774be9b73a2e0b31462189cbcabe3f2 and ./wordpress-3.4.1/.git/objects/78/4ac24f1774be9b73a2e0b31462189cbcabe3f2 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/78/6e4f55de224e5d346df90e2d490e51b16474f4 ./wordpress-3.4.1/.git/objects/78/6e4f55de224e5d346df90e2d490e51b16474f4 *** ./wordpress-3.4/.git/objects/78/6e4f55de224e5d346df90e2d490e51b16474f4 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/78/6e4f55de224e5d346df90e2d490e51b16474f4 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - xK��OR04�dp�t��Laa��0s��M[�_���бS^��x���%K���r�ы�eP��OV.�0�������Z�>k�鲜�!�����t2�M�&+>c����j\��9���w^+X�83@+칰P�T��)H;� \ No newline at end of file --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/79/5495a664090ba25694944a8fb950732d7704d5 ./wordpress-3.4.1/.git/objects/79/5495a664090ba25694944a8fb950732d7704d5 *** ./wordpress-3.4/.git/objects/79/5495a664090ba25694944a8fb950732d7704d5 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/79/5495a664090ba25694944a8fb950732d7704d5 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - x��_K�0�}]?E(Ba͓�9��e�B��4���4 I�~|Ӥ�27ѷ�ޓ��9��F�����B�:��i���*��Y�OP�kB?�}��&璊}�+p2��A�!Yp�Kf��e�y�X\� ����[���bJ Bd����²=ok�SvF��ވ�:��[�A�\��Y� |c/�^ܷ�AC�Hs*i��jb̢,7��jY>�������}W"MO(މaJ�߃��;��B �!���QKol�5�x�d�w\���i���F}Zk8�=�� �=��0�ҡ`�e`�<Q�9|Az��v0:���.�O�0 \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/79/cc1e195c6188a20e99e42d41c56a41ad995fbf and ./wordpress-3.4.1/.git/objects/79/cc1e195c6188a20e99e42d41c56a41ad995fbf differ Binary files ./wordpress-3.4/.git/objects/7a/52cf2bc7089cf38d19f6f5ade30ba6dc3824de and ./wordpress-3.4.1/.git/objects/7a/52cf2bc7089cf38d19f6f5ade30ba6dc3824de differ Binary files ./wordpress-3.4/.git/objects/7a/f247cb4aced31103549eeffd106268d39b876f and ./wordpress-3.4.1/.git/objects/7a/f247cb4aced31103549eeffd106268d39b876f differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/7b/1f6d30449c976f49a4ff4f55558156a7084732 ./wordpress-3.4.1/.git/objects/7b/1f6d30449c976f49a4ff4f55558156a7084732 *** ./wordpress-3.4/.git/objects/7b/1f6d30449c976f49a4ff4f55558156a7084732 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/7b/1f6d30449c976f49a4ff4f55558156a7084732 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - xK��OR047ap�t��L�g�g�������+�s�O2����o.�����Ǎ������)P (�dad`�c�q@f0�D_�̚{#t�9Iq��9͂>�����.�Qȗ��7߾I���XS�)��,�//⌰�f���[tS�c���@٬��^��j��'����MW��PD? \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/7b/959e3a186e5e35db7fa492755502efec246c63 and ./wordpress-3.4.1/.git/objects/7b/959e3a186e5e35db7fa492755502efec246c63 differ Binary files ./wordpress-3.4/.git/objects/7b/c3fd4671fb1f3a22ea7b234617acd61282f17e and ./wordpress-3.4.1/.git/objects/7b/c3fd4671fb1f3a22ea7b234617acd61282f17e differ Binary files ./wordpress-3.4/.git/objects/7b/dbd292fc5b91cdcc629b3faa45320288832e57 and ./wordpress-3.4.1/.git/objects/7b/dbd292fc5b91cdcc629b3faa45320288832e57 differ Binary files ./wordpress-3.4/.git/objects/7b/fd25d58aca207c062a4869a4b972fb08bc31f6 and ./wordpress-3.4.1/.git/objects/7b/fd25d58aca207c062a4869a4b972fb08bc31f6 differ Binary files ./wordpress-3.4/.git/objects/7c/0939b6b8cf542370ac6170f011c475b8b495e1 and ./wordpress-3.4.1/.git/objects/7c/0939b6b8cf542370ac6170f011c475b8b495e1 differ Binary files ./wordpress-3.4/.git/objects/7c/ae6f167b95e40906d1cb6121560f68cba25db0 and ./wordpress-3.4.1/.git/objects/7c/ae6f167b95e40906d1cb6121560f68cba25db0 differ Binary files ./wordpress-3.4/.git/objects/7d/0a4dbca03cc13177a359a5f175dda819fdf464 and ./wordpress-3.4.1/.git/objects/7d/0a4dbca03cc13177a359a5f175dda819fdf464 differ Binary files ./wordpress-3.4/.git/objects/7d/18bb9a695d8a8db408a3bdc22a93897f0f44cc and ./wordpress-3.4.1/.git/objects/7d/18bb9a695d8a8db408a3bdc22a93897f0f44cc differ Binary files ./wordpress-3.4/.git/objects/7d/1b9beefe1b070a00dc9e38e2c7d2d70738c285 and ./wordpress-3.4.1/.git/objects/7d/1b9beefe1b070a00dc9e38e2c7d2d70738c285 differ Binary files ./wordpress-3.4/.git/objects/7d/54b1f994bb20c2a17c6e9e53edb39e0444b380 and ./wordpress-3.4.1/.git/objects/7d/54b1f994bb20c2a17c6e9e53edb39e0444b380 differ Binary files ./wordpress-3.4/.git/objects/7d/c455286b371cb7c7a016664371338ce5123ae7 and ./wordpress-3.4.1/.git/objects/7d/c455286b371cb7c7a016664371338ce5123ae7 differ Binary files ./wordpress-3.4/.git/objects/7e/08dc2182ced8e41c424fec07a8eeb463d22164 and ./wordpress-3.4.1/.git/objects/7e/08dc2182ced8e41c424fec07a8eeb463d22164 differ Binary files ./wordpress-3.4/.git/objects/7e/109182559548a8279d5c01139bbf485e708f4b and ./wordpress-3.4.1/.git/objects/7e/109182559548a8279d5c01139bbf485e708f4b differ Binary files ./wordpress-3.4/.git/objects/7e/e32cb5155cf713da9eaf58a701fddd0030777b and ./wordpress-3.4.1/.git/objects/7e/e32cb5155cf713da9eaf58a701fddd0030777b differ Binary files ./wordpress-3.4/.git/objects/7f/46cbc643f4b1e070489082025d2762482a16e0 and ./wordpress-3.4.1/.git/objects/7f/46cbc643f4b1e070489082025d2762482a16e0 differ Binary files ./wordpress-3.4/.git/objects/7f/71b3d018b7e9ba1e943775a93ce42d5969a038 and ./wordpress-3.4.1/.git/objects/7f/71b3d018b7e9ba1e943775a93ce42d5969a038 differ Binary files ./wordpress-3.4/.git/objects/7f/72da69a684a7e0caaff4d32aeb32cf729708d6 and ./wordpress-3.4.1/.git/objects/7f/72da69a684a7e0caaff4d32aeb32cf729708d6 differ Binary files ./wordpress-3.4/.git/objects/7f/c3967b6a74ff7132f5849ce8942a8522435141 and ./wordpress-3.4.1/.git/objects/7f/c3967b6a74ff7132f5849ce8942a8522435141 differ Binary files ./wordpress-3.4/.git/objects/7f/c57f2bc2d63a3ad6fbf98b663f336539f011ec and ./wordpress-3.4.1/.git/objects/7f/c57f2bc2d63a3ad6fbf98b663f336539f011ec differ Binary files ./wordpress-3.4/.git/objects/7f/daede33cdcf8ab4dfbe60722c8dcdf32609754 and ./wordpress-3.4.1/.git/objects/7f/daede33cdcf8ab4dfbe60722c8dcdf32609754 differ Binary files ./wordpress-3.4/.git/objects/80/24d4807622702e0e65f4234d1822be138bc332 and ./wordpress-3.4.1/.git/objects/80/24d4807622702e0e65f4234d1822be138bc332 differ Binary files ./wordpress-3.4/.git/objects/80/3ad630c015d80b318f7b2144aba0b583efc1b6 and ./wordpress-3.4.1/.git/objects/80/3ad630c015d80b318f7b2144aba0b583efc1b6 differ Binary files ./wordpress-3.4/.git/objects/80/483876778125750c0136dedfadbfb0290c55c0 and ./wordpress-3.4.1/.git/objects/80/483876778125750c0136dedfadbfb0290c55c0 differ Binary files ./wordpress-3.4/.git/objects/80/49099e6c6aa14b04b7caf37f18a780c1d4bff1 and ./wordpress-3.4.1/.git/objects/80/49099e6c6aa14b04b7caf37f18a780c1d4bff1 differ Binary files ./wordpress-3.4/.git/objects/80/c251fdd75c5a9a960b87e4120509a1100e131b and ./wordpress-3.4.1/.git/objects/80/c251fdd75c5a9a960b87e4120509a1100e131b differ Binary files ./wordpress-3.4/.git/objects/80/c4fb8990f0220cf253a57d350773370ce33646 and ./wordpress-3.4.1/.git/objects/80/c4fb8990f0220cf253a57d350773370ce33646 differ Binary files ./wordpress-3.4/.git/objects/80/cc76b060b194d7e833f813931c45519d58e9f3 and ./wordpress-3.4.1/.git/objects/80/cc76b060b194d7e833f813931c45519d58e9f3 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/81/80a8cf49078fd4882a4821a5081b92d893bf3f ./wordpress-3.4.1/.git/objects/81/80a8cf49078fd4882a4821a5081b92d893bf3f *** ./wordpress-3.4/.git/objects/81/80a8cf49078fd4882a4821a5081b92d893bf3f 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/81/80a8cf49078fd4882a4821a5081b92d893bf3f 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,4 **** - x�UM��6�U����Ed���כZ @Q,�z$hid�IV�m���C��IQ�3��7�n�������duw7�;z���`�Ugz�;�24�:29�c���g'���N١}�G}���hx=� g��#�lT�a����ay�j2�q=˖���=o&��Z{n���T�4u����<�P�[uL��5y�4X�OӽT�%�H��9����Y�|A�X�#L�H���#��QN=��4O7@� - 3���s����?�/~��f!!� �-p��N�͌���iA�D - ���I��.�*��O���zެW�C���I&C�s�Ҳo�lO���� U��a��<��n��Xq�[����<x���L�� c�i&I��b��}���.M���u���ݠ�D��gj�n�e���# - ³�[{��:�ā���(��[�@���$�S�4��(���s�d��s�j}h�!D���찗���թ�*��ɫ��,C8_;:���A���Ǡ��{�I� ��� �(i%a,| �H��ᒣB,�槞I!�X+�Z��=/H��A:)�i[��2>`�jW%Y��8���CI>DkԜ@׀#*���$Ќ#�i�o��?����ag�p�Q�j0۴A�p�=㕌���:x� ug��j?Qp�ǚ�o���~��A��S4;@��?���,�H�+���Ꚗ�Y��/����-���⫵�[*��Ymw���b�4�}��H}�9�?��[*^��t�<�#��8ҳv�x#0~AZ�C_�g�.뮨(�$�L<):+@��p�Bi1���*��^�c��Ra�iUw!�zu ���pX��k3�ߛ-������?R���Z��R��|�1� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/81/947af5a833c3a5d4acef17bc93b4a682f8a9c9 and ./wordpress-3.4.1/.git/objects/81/947af5a833c3a5d4acef17bc93b4a682f8a9c9 differ Binary files ./wordpress-3.4/.git/objects/81/b1d6a01e134a01a0458dbb086957d691d5d0a5 and ./wordpress-3.4.1/.git/objects/81/b1d6a01e134a01a0458dbb086957d691d5d0a5 differ Binary files ./wordpress-3.4/.git/objects/81/cefe5736c0c4158d2ac8e2ab397c83e58a6611 and ./wordpress-3.4.1/.git/objects/81/cefe5736c0c4158d2ac8e2ab397c83e58a6611 differ Binary files ./wordpress-3.4/.git/objects/81/da151f6ef1b1b755a0c30aa196a6c85fd652c6 and ./wordpress-3.4.1/.git/objects/81/da151f6ef1b1b755a0c30aa196a6c85fd652c6 differ Binary files ./wordpress-3.4/.git/objects/81/e51131afbadfe76a8cb6112a6fdbf0774b59a3 and ./wordpress-3.4.1/.git/objects/81/e51131afbadfe76a8cb6112a6fdbf0774b59a3 differ Binary files ./wordpress-3.4/.git/objects/82/290f48334c81272ff5991962951758137a08ba and ./wordpress-3.4.1/.git/objects/82/290f48334c81272ff5991962951758137a08ba differ Binary files ./wordpress-3.4/.git/objects/82/48e3a64f69653647c6e0c379d16d4be1775169 and ./wordpress-3.4.1/.git/objects/82/48e3a64f69653647c6e0c379d16d4be1775169 differ Binary files ./wordpress-3.4/.git/objects/82/52ca9e24afc53759a251575d49923531b0e06b and ./wordpress-3.4.1/.git/objects/82/52ca9e24afc53759a251575d49923531b0e06b differ Binary files ./wordpress-3.4/.git/objects/82/550734ae4ce806657867e8827ff7c27a6c08b8 and ./wordpress-3.4.1/.git/objects/82/550734ae4ce806657867e8827ff7c27a6c08b8 differ Binary files ./wordpress-3.4/.git/objects/82/57b5187b78ccc0e3d4ff5d7cdc70beee55e554 and ./wordpress-3.4.1/.git/objects/82/57b5187b78ccc0e3d4ff5d7cdc70beee55e554 differ Binary files ./wordpress-3.4/.git/objects/82/7556ee3065c82a0bbb99409840a85fa26d755e and ./wordpress-3.4.1/.git/objects/82/7556ee3065c82a0bbb99409840a85fa26d755e differ Binary files ./wordpress-3.4/.git/objects/82/b0b7d155bb6af0b773b15cbc79812492683761 and ./wordpress-3.4.1/.git/objects/82/b0b7d155bb6af0b773b15cbc79812492683761 differ Binary files ./wordpress-3.4/.git/objects/82/b6b84db2b7e1b5a15be94e233766e44351ed62 and ./wordpress-3.4.1/.git/objects/82/b6b84db2b7e1b5a15be94e233766e44351ed62 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/82/caa3ad08fcc5906c70e030f26cb8f35819d79a ./wordpress-3.4.1/.git/objects/82/caa3ad08fcc5906c70e030f26cb8f35819d79a *** ./wordpress-3.4/.git/objects/82/caa3ad08fcc5906c70e030f26cb8f35819d79a 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/82/caa3ad08fcc5906c70e030f26cb8f35819d79a 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - xU��N�0�i�S�%)��� $�Z@t��/����؎�sD��3�v�d�n{uvs>��N����=#9� ��s��f�`=M���.�qo?o�k���m����<O�g:؏�����2��2�$��?�A$Wx��H_3G2Rblt��ӥ��R���d+�iѪ�c0��Řb��4� 1�d���DN��%�WI�O�Xa�<d \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/83/074fbf2b47b90285eb8ac34a347ec29155e50c and ./wordpress-3.4.1/.git/objects/83/074fbf2b47b90285eb8ac34a347ec29155e50c differ Binary files ./wordpress-3.4/.git/objects/83/20bc1e1d9a90ef47157a7476c71cb760b2113f and ./wordpress-3.4.1/.git/objects/83/20bc1e1d9a90ef47157a7476c71cb760b2113f differ Binary files ./wordpress-3.4/.git/objects/83/48c97816676150813eecac8daf58621eef25e0 and ./wordpress-3.4.1/.git/objects/83/48c97816676150813eecac8daf58621eef25e0 differ Binary files ./wordpress-3.4/.git/objects/83/71546d3701870e000e13583f0147d24b69ec41 and ./wordpress-3.4.1/.git/objects/83/71546d3701870e000e13583f0147d24b69ec41 differ Binary files ./wordpress-3.4/.git/objects/83/8db55b180467b23a323df99561cdc7a68c311b and ./wordpress-3.4.1/.git/objects/83/8db55b180467b23a323df99561cdc7a68c311b differ Binary files ./wordpress-3.4/.git/objects/83/9fe6bc256d87bb482e887c50e88a73107d156e and ./wordpress-3.4.1/.git/objects/83/9fe6bc256d87bb482e887c50e88a73107d156e differ Binary files ./wordpress-3.4/.git/objects/83/b6bb596d67b57dcaa7156a2b1f113f86efc455 and ./wordpress-3.4.1/.git/objects/83/b6bb596d67b57dcaa7156a2b1f113f86efc455 differ Binary files ./wordpress-3.4/.git/objects/84/2e5b5d6f2e45e439675b50d4635b584b1056f9 and ./wordpress-3.4.1/.git/objects/84/2e5b5d6f2e45e439675b50d4635b584b1056f9 differ Binary files ./wordpress-3.4/.git/objects/84/58911575e1a8e68dffcdcd702e29d3e6872e46 and ./wordpress-3.4.1/.git/objects/84/58911575e1a8e68dffcdcd702e29d3e6872e46 differ Binary files ./wordpress-3.4/.git/objects/84/8bd720b879281ea1c289e6c3b671c4c0333c25 and ./wordpress-3.4.1/.git/objects/84/8bd720b879281ea1c289e6c3b671c4c0333c25 differ Binary files ./wordpress-3.4/.git/objects/84/9a2d0b574d92e20d7f0b5a09316765b4e9bf06 and ./wordpress-3.4.1/.git/objects/84/9a2d0b574d92e20d7f0b5a09316765b4e9bf06 differ Binary files ./wordpress-3.4/.git/objects/84/a616db10cd72a2abb1ef8533b839885994b56c and ./wordpress-3.4.1/.git/objects/84/a616db10cd72a2abb1ef8533b839885994b56c differ Binary files ./wordpress-3.4/.git/objects/84/c6c35d1d95dc379a9e5064af24cce4231b0266 and ./wordpress-3.4.1/.git/objects/84/c6c35d1d95dc379a9e5064af24cce4231b0266 differ Binary files ./wordpress-3.4/.git/objects/85/1b3730f7a49c1d6e1a405054ef5476b8aadd86 and ./wordpress-3.4.1/.git/objects/85/1b3730f7a49c1d6e1a405054ef5476b8aadd86 differ Binary files ./wordpress-3.4/.git/objects/85/24fa531ed94a4e2258c5ea4c8badf17cda555c and ./wordpress-3.4.1/.git/objects/85/24fa531ed94a4e2258c5ea4c8badf17cda555c differ Binary files ./wordpress-3.4/.git/objects/85/43ee4e0ef05f29c32a3e9b7147ff20263dfa41 and ./wordpress-3.4.1/.git/objects/85/43ee4e0ef05f29c32a3e9b7147ff20263dfa41 differ Binary files ./wordpress-3.4/.git/objects/85/812cde3fd6c187ecc460ab7bffd10e815eec9a and ./wordpress-3.4.1/.git/objects/85/812cde3fd6c187ecc460ab7bffd10e815eec9a differ Binary files ./wordpress-3.4/.git/objects/85/8dbd7ded7d185e9d74213b524c66ab717200b0 and ./wordpress-3.4.1/.git/objects/85/8dbd7ded7d185e9d74213b524c66ab717200b0 differ Binary files ./wordpress-3.4/.git/objects/85/b99d46b9911ba53a792d716d9f688f3bb3c784 and ./wordpress-3.4.1/.git/objects/85/b99d46b9911ba53a792d716d9f688f3bb3c784 differ Binary files ./wordpress-3.4/.git/objects/85/e31dfb2d0454de352d87fe95f7003f22c87992 and ./wordpress-3.4.1/.git/objects/85/e31dfb2d0454de352d87fe95f7003f22c87992 differ Binary files ./wordpress-3.4/.git/objects/85/fa1ffcb9d86325383d6911b444710cfd39bf3b and ./wordpress-3.4.1/.git/objects/85/fa1ffcb9d86325383d6911b444710cfd39bf3b differ Binary files ./wordpress-3.4/.git/objects/85/fd61c6cea5ed38329ca3219e695f2de8ac9c20 and ./wordpress-3.4.1/.git/objects/85/fd61c6cea5ed38329ca3219e695f2de8ac9c20 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/86/458479df001dde15d197a908707c28754b7803 ./wordpress-3.4.1/.git/objects/86/458479df001dde15d197a908707c28754b7803 *** ./wordpress-3.4/.git/objects/86/458479df001dde15d197a908707c28754b7803 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/86/458479df001dde15d197a908707c28754b7803 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,3 **** - xe�� - �@���w7*2b���쏄���etn%�Ns� ڴ=�;���+H'��lnoV$Q$ �5YG��(83�cV���ぴQ�|����e�L�٧�h~{�4-Pi�N?(@�� b��T�P�a - d�}�N���q�}W��Xd��W���7�:j \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/86/80a54668f88cdfe4bf4f5e46a3739d6e10338f and ./wordpress-3.4.1/.git/objects/86/80a54668f88cdfe4bf4f5e46a3739d6e10338f differ Binary files ./wordpress-3.4/.git/objects/86/8a657cca2e16c23e59c0b5050d49c817c9cff3 and ./wordpress-3.4.1/.git/objects/86/8a657cca2e16c23e59c0b5050d49c817c9cff3 differ Binary files ./wordpress-3.4/.git/objects/86/a0be77f31029c4ea3eb31c4f8ace1ccbf91cd8 and ./wordpress-3.4.1/.git/objects/86/a0be77f31029c4ea3eb31c4f8ace1ccbf91cd8 differ Binary files ./wordpress-3.4/.git/objects/86/cb448bba4b97697f175a50c9575c9509f0db8f and ./wordpress-3.4.1/.git/objects/86/cb448bba4b97697f175a50c9575c9509f0db8f differ Binary files ./wordpress-3.4/.git/objects/87/e61553b37399c4c584f1357afa1fd04001e848 and ./wordpress-3.4.1/.git/objects/87/e61553b37399c4c584f1357afa1fd04001e848 differ Binary files ./wordpress-3.4/.git/objects/88/33c9e6134559422d82de917dcc9f569cf87bdd and ./wordpress-3.4.1/.git/objects/88/33c9e6134559422d82de917dcc9f569cf87bdd differ Binary files ./wordpress-3.4/.git/objects/88/50a80b2803f7b3800abba49e67db5ff6f199f1 and ./wordpress-3.4.1/.git/objects/88/50a80b2803f7b3800abba49e67db5ff6f199f1 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/88/50aa8f887d624dccf21b30fcb9b7bc9ea33540 ./wordpress-3.4.1/.git/objects/88/50aa8f887d624dccf21b30fcb9b7bc9ea33540 *** ./wordpress-3.4/.git/objects/88/50aa8f887d624dccf21b30fcb9b7bc9ea33540 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/88/50aa8f887d624dccf21b30fcb9b7bc9ea33540 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - xU�KO�0���_1��D¡�Rg�z�9�RVM����c����>f��'�z\�<���W}�)t�Ny�d9I��t�p��GvS0��G�.�U��fw0{� �܍y���8r��ݎ��K�P�^U2���?��罊� - �u?�w�@�����t�a��I)�D�;p�nӢU�'?X.�a(�k&�콄Tp�@ΌY]�f�_\%���߹?��h� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/88/51447ce98d0fb2707f0da5a6bcad72380b6674 and ./wordpress-3.4.1/.git/objects/88/51447ce98d0fb2707f0da5a6bcad72380b6674 differ Binary files ./wordpress-3.4/.git/objects/88/96615438fd1e5e058e5920f2a0091b7b387e71 and ./wordpress-3.4.1/.git/objects/88/96615438fd1e5e058e5920f2a0091b7b387e71 differ Binary files ./wordpress-3.4/.git/objects/88/c5d745490b2182e796698b58babf4856544b3e and ./wordpress-3.4.1/.git/objects/88/c5d745490b2182e796698b58babf4856544b3e differ Binary files ./wordpress-3.4/.git/objects/88/d9bf8df35294d3854c7d053e3998d2272b51f2 and ./wordpress-3.4.1/.git/objects/88/d9bf8df35294d3854c7d053e3998d2272b51f2 differ Binary files ./wordpress-3.4/.git/objects/89/6979a26c85403a6ec13fb5d44b5d0e59594cc7 and ./wordpress-3.4.1/.git/objects/89/6979a26c85403a6ec13fb5d44b5d0e59594cc7 differ Binary files ./wordpress-3.4/.git/objects/89/75737d5334ea1fbd47de67a5c15d27c3cf6d01 and ./wordpress-3.4.1/.git/objects/89/75737d5334ea1fbd47de67a5c15d27c3cf6d01 differ Binary files ./wordpress-3.4/.git/objects/89/761b255cb93043c3f42d5d41b0e6ae5822e124 and ./wordpress-3.4.1/.git/objects/89/761b255cb93043c3f42d5d41b0e6ae5822e124 differ Binary files ./wordpress-3.4/.git/objects/89/a888c75d9c99cb91d85afd18b07f52f12a7e29 and ./wordpress-3.4.1/.git/objects/89/a888c75d9c99cb91d85afd18b07f52f12a7e29 differ Binary files ./wordpress-3.4/.git/objects/89/ebdea83d4efdfb6525cb5dc650f7624449d60a and ./wordpress-3.4.1/.git/objects/89/ebdea83d4efdfb6525cb5dc650f7624449d60a differ Binary files ./wordpress-3.4/.git/objects/8a/1664f329d5cff7a12eaa49dd7aa3344f815ffb and ./wordpress-3.4.1/.git/objects/8a/1664f329d5cff7a12eaa49dd7aa3344f815ffb differ Binary files ./wordpress-3.4/.git/objects/8a/396e03fa7ec20c3bec606bb7d2d1c77deec5d7 and ./wordpress-3.4.1/.git/objects/8a/396e03fa7ec20c3bec606bb7d2d1c77deec5d7 differ Binary files ./wordpress-3.4/.git/objects/8a/4b4cfc129aac2397fe495b86e3983afe901bdf and ./wordpress-3.4.1/.git/objects/8a/4b4cfc129aac2397fe495b86e3983afe901bdf differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/8a/667529a6299cee2abbd738f5162fedc6a91279 ./wordpress-3.4.1/.git/objects/8a/667529a6299cee2abbd738f5162fedc6a91279 *** ./wordpress-3.4/.git/objects/8a/667529a6299cee2abbd738f5162fedc6a91279 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/8a/667529a6299cee2abbd738f5162fedc6a91279 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - x��A - �0Fa�9�\@�]�� g�L��� �]���/���ty$f)�&�W��^�����`�Y�h؞TM��op暴�XVߵ����Ϻ���qD�){��c�ڒ����]�b|P \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/8a/a35380fdd2a8096c64e1a0b41be4112684f27c and ./wordpress-3.4.1/.git/objects/8a/a35380fdd2a8096c64e1a0b41be4112684f27c differ Binary files ./wordpress-3.4/.git/objects/8b/b96f9cbec31d66a874ed1c3e3438e3d74ad51d and ./wordpress-3.4.1/.git/objects/8b/b96f9cbec31d66a874ed1c3e3438e3d74ad51d differ Binary files ./wordpress-3.4/.git/objects/8c/283715902b36abda66f71cb5e28cb54ca43574 and ./wordpress-3.4.1/.git/objects/8c/283715902b36abda66f71cb5e28cb54ca43574 differ Binary files ./wordpress-3.4/.git/objects/8c/5a120f567d800616741345859c10e6b37da7c0 and ./wordpress-3.4.1/.git/objects/8c/5a120f567d800616741345859c10e6b37da7c0 differ Binary files ./wordpress-3.4/.git/objects/8c/93f8c25659e771f8fb9683d6bfe913d18e83c3 and ./wordpress-3.4.1/.git/objects/8c/93f8c25659e771f8fb9683d6bfe913d18e83c3 differ Binary files ./wordpress-3.4/.git/objects/8c/a02d7c1881c563c1fae78dbbf44fdbeecab979 and ./wordpress-3.4.1/.git/objects/8c/a02d7c1881c563c1fae78dbbf44fdbeecab979 differ Binary files ./wordpress-3.4/.git/objects/8c/f0a25650e9991231067760f33230dfb3f0c817 and ./wordpress-3.4.1/.git/objects/8c/f0a25650e9991231067760f33230dfb3f0c817 differ Binary files ./wordpress-3.4/.git/objects/8d/375a5f331172865388f395b2bad63fce66a909 and ./wordpress-3.4.1/.git/objects/8d/375a5f331172865388f395b2bad63fce66a909 differ Binary files ./wordpress-3.4/.git/objects/8e/3a05dd1428afda8a8de3f8ff55295991364c51 and ./wordpress-3.4.1/.git/objects/8e/3a05dd1428afda8a8de3f8ff55295991364c51 differ Binary files ./wordpress-3.4/.git/objects/8e/560a2e29b296016d38a6874b0cd0bea93fb9a1 and ./wordpress-3.4.1/.git/objects/8e/560a2e29b296016d38a6874b0cd0bea93fb9a1 differ Binary files ./wordpress-3.4/.git/objects/8e/a976ffaca6e26b698c95180727abb9dc24b9e4 and ./wordpress-3.4.1/.git/objects/8e/a976ffaca6e26b698c95180727abb9dc24b9e4 differ Binary files ./wordpress-3.4/.git/objects/8e/ab0751d315fdab26e295dbaaada4ef4279b8b2 and ./wordpress-3.4.1/.git/objects/8e/ab0751d315fdab26e295dbaaada4ef4279b8b2 differ Binary files ./wordpress-3.4/.git/objects/8f/10e7aa6b6ab40ee69a1a41a961c092168d6fda and ./wordpress-3.4.1/.git/objects/8f/10e7aa6b6ab40ee69a1a41a961c092168d6fda differ Binary files ./wordpress-3.4/.git/objects/8f/4d648dbeec7d6df934aeb4d39cc1f214363500 and ./wordpress-3.4.1/.git/objects/8f/4d648dbeec7d6df934aeb4d39cc1f214363500 differ Binary files ./wordpress-3.4/.git/objects/8f/5aaa24d02b5608eb3ec130f762c507cd2f8b56 and ./wordpress-3.4.1/.git/objects/8f/5aaa24d02b5608eb3ec130f762c507cd2f8b56 differ Binary files ./wordpress-3.4/.git/objects/8f/66aaddc35132882f27e752eb7769697e1757fe and ./wordpress-3.4.1/.git/objects/8f/66aaddc35132882f27e752eb7769697e1757fe differ Binary files ./wordpress-3.4/.git/objects/8f/b1399b3b87ebd6c4a320cf6585e79e49964e90 and ./wordpress-3.4.1/.git/objects/8f/b1399b3b87ebd6c4a320cf6585e79e49964e90 differ Binary files ./wordpress-3.4/.git/objects/8f/c51d55ac110ada3b534dda6a0bb6bef3d9506b and ./wordpress-3.4.1/.git/objects/8f/c51d55ac110ada3b534dda6a0bb6bef3d9506b differ Binary files ./wordpress-3.4/.git/objects/8f/e5b19cc6f4812e75bcf90f8f74dd55cc04a574 and ./wordpress-3.4.1/.git/objects/8f/e5b19cc6f4812e75bcf90f8f74dd55cc04a574 differ Binary files ./wordpress-3.4/.git/objects/8f/eb485f9139c42df20646aca027a2fbd64afa98 and ./wordpress-3.4.1/.git/objects/8f/eb485f9139c42df20646aca027a2fbd64afa98 differ Binary files ./wordpress-3.4/.git/objects/90/4936f3de5491ba8b484db8ea24adfb82257b30 and ./wordpress-3.4.1/.git/objects/90/4936f3de5491ba8b484db8ea24adfb82257b30 differ Binary files ./wordpress-3.4/.git/objects/90/5fffdd96fb67a5c812450d19781cee9bba3d0d and ./wordpress-3.4.1/.git/objects/90/5fffdd96fb67a5c812450d19781cee9bba3d0d differ Binary files ./wordpress-3.4/.git/objects/90/8caa2d8f84d33cd903323affcbf70372f84ec5 and ./wordpress-3.4.1/.git/objects/90/8caa2d8f84d33cd903323affcbf70372f84ec5 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/90/98b0656b758962cb72fb95811b1102df0895ab ./wordpress-3.4.1/.git/objects/90/98b0656b758962cb72fb95811b1102df0895ab *** ./wordpress-3.4/.git/objects/90/98b0656b758962cb72fb95811b1102df0895ab 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/90/98b0656b758962cb72fb95811b1102df0895ab 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - xK��OR07fp�t��Lag��pƘ�?000(�dadg`b��@�LRS�W�~˿xΖ[\���~Wx�cڳ�e�B�� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/90/b19e8e8e6c971f50a1cd041ec670910947b6c5 and ./wordpress-3.4.1/.git/objects/90/b19e8e8e6c971f50a1cd041ec670910947b6c5 differ Binary files ./wordpress-3.4/.git/objects/91/017ee62703d2491161f5a3500650f42f90929e and ./wordpress-3.4.1/.git/objects/91/017ee62703d2491161f5a3500650f42f90929e differ Binary files ./wordpress-3.4/.git/objects/91/17ae5d348d911151eacdc8aee9f8dd4fa0645b and ./wordpress-3.4.1/.git/objects/91/17ae5d348d911151eacdc8aee9f8dd4fa0645b differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/91/29795de6a3e53efe8cd114b2e17f93d0f61d64 ./wordpress-3.4.1/.git/objects/91/29795de6a3e53efe8cd114b2e17f93d0f61d64 *** ./wordpress-3.4/.git/objects/91/29795de6a3e53efe8cd114b2e17f93d0f61d64 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/91/29795de6a3e53efe8cd114b2e17f93d0f61d64 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - x��� - �0�=�)��h^TZ�,�<�4Y4�&1�Rߔ�o�v��o�iM��f�/�Ӳ"M�p2]���l$:N�h8�Ni�i�7�u�c��R9���21|��,jO�z�&*�彲\���n��8�~�V�o�=�s��Cim��8��b�Yk��d�[�yV|\_������E ~����ec \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/91/4d70654ca3c82deecf59c58eaba497725f0e8f and ./wordpress-3.4.1/.git/objects/91/4d70654ca3c82deecf59c58eaba497725f0e8f differ Binary files ./wordpress-3.4/.git/objects/92/194f039213c40289d86b1752b5937dff94da78 and ./wordpress-3.4.1/.git/objects/92/194f039213c40289d86b1752b5937dff94da78 differ Binary files ./wordpress-3.4/.git/objects/92/2bfb425005909b7721f87a733c408e1957666d and ./wordpress-3.4.1/.git/objects/92/2bfb425005909b7721f87a733c408e1957666d differ Binary files ./wordpress-3.4/.git/objects/92/2f4c09cc061b8e004e174681062bdb3e7072aa and ./wordpress-3.4.1/.git/objects/92/2f4c09cc061b8e004e174681062bdb3e7072aa differ Binary files ./wordpress-3.4/.git/objects/92/fd355c82ed81690fdc75dec27e0ddeeaa1a361 and ./wordpress-3.4.1/.git/objects/92/fd355c82ed81690fdc75dec27e0ddeeaa1a361 differ Binary files ./wordpress-3.4/.git/objects/93/14d044709c9845876e08003cf94526fd69177f and ./wordpress-3.4.1/.git/objects/93/14d044709c9845876e08003cf94526fd69177f differ Binary files ./wordpress-3.4/.git/objects/93/4917db881076c67d74f9a69f7554b10cd91f0e and ./wordpress-3.4.1/.git/objects/93/4917db881076c67d74f9a69f7554b10cd91f0e differ Binary files ./wordpress-3.4/.git/objects/93/bb6d4f35676fb8e0d6f8505ac232de3ef42526 and ./wordpress-3.4.1/.git/objects/93/bb6d4f35676fb8e0d6f8505ac232de3ef42526 differ Binary files ./wordpress-3.4/.git/objects/93/eaef220d8695b21e747966af71eaae521a9821 and ./wordpress-3.4.1/.git/objects/93/eaef220d8695b21e747966af71eaae521a9821 differ Binary files ./wordpress-3.4/.git/objects/93/efe53c2f5c116ba0eb231fd4881fec7e84317a and ./wordpress-3.4.1/.git/objects/93/efe53c2f5c116ba0eb231fd4881fec7e84317a differ Binary files ./wordpress-3.4/.git/objects/94/1ac2ef6f80d3363ba9f3e2c7474094c0998631 and ./wordpress-3.4.1/.git/objects/94/1ac2ef6f80d3363ba9f3e2c7474094c0998631 differ Binary files ./wordpress-3.4/.git/objects/94/47cc3e7305cc82cedba9115a7d3cb2febc0123 and ./wordpress-3.4.1/.git/objects/94/47cc3e7305cc82cedba9115a7d3cb2febc0123 differ Binary files ./wordpress-3.4/.git/objects/94/a5b2532b31e2050ce96a8c5f15dac5176fd02a and ./wordpress-3.4.1/.git/objects/94/a5b2532b31e2050ce96a8c5f15dac5176fd02a differ Binary files ./wordpress-3.4/.git/objects/94/abd08763fffdaa0dd5c5afb470a97294f2b94d and ./wordpress-3.4.1/.git/objects/94/abd08763fffdaa0dd5c5afb470a97294f2b94d differ Binary files ./wordpress-3.4/.git/objects/94/e6339d279df70097d26030e9c41e7797525b45 and ./wordpress-3.4.1/.git/objects/94/e6339d279df70097d26030e9c41e7797525b45 differ Binary files ./wordpress-3.4/.git/objects/94/e89f52c4781fb5de77b5c4c56ea71c44f94642 and ./wordpress-3.4.1/.git/objects/94/e89f52c4781fb5de77b5c4c56ea71c44f94642 differ Binary files ./wordpress-3.4/.git/objects/94/eeb02e62f4b6c27249ed1279bb30312ee4c112 and ./wordpress-3.4.1/.git/objects/94/eeb02e62f4b6c27249ed1279bb30312ee4c112 differ Binary files ./wordpress-3.4/.git/objects/95/1494999e7a15a029a56071145c708dffac7c14 and ./wordpress-3.4.1/.git/objects/95/1494999e7a15a029a56071145c708dffac7c14 differ Binary files ./wordpress-3.4/.git/objects/95/149c531d40cec7248708d5f51260be7c6ccda2 and ./wordpress-3.4.1/.git/objects/95/149c531d40cec7248708d5f51260be7c6ccda2 differ Binary files ./wordpress-3.4/.git/objects/95/1583ace60a29ab876c467324326dea551abe25 and ./wordpress-3.4.1/.git/objects/95/1583ace60a29ab876c467324326dea551abe25 differ Binary files ./wordpress-3.4/.git/objects/95/5a51fcfb20c19fcc0d4c4cd9f0193d4e0af871 and ./wordpress-3.4.1/.git/objects/95/5a51fcfb20c19fcc0d4c4cd9f0193d4e0af871 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/95/7d454a6e9d9151090427b42a0e1d54ed5d9150 ./wordpress-3.4.1/.git/objects/95/7d454a6e9d9151090427b42a0e1d54ed5d9150 *** ./wordpress-3.4/.git/objects/95/7d454a6e9d9151090427b42a0e1d54ed5d9150 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/95/7d454a6e9d9151090427b42a0e1d54ed5d9150 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - xu�OO�@�(xiv����z�f���.�f�J"ị�E9x���{�y��*����86�)UcX�vJ�/F�FI - (!��'��}�@�!0� �5��!�5�t�ʝz��{���uce�ȋ��D��?�FmU�#k9����f�<�?��$qw�}��Rڋ�%b���%z�_�C�cl����P�3ҩ� �pPp�Bi̱r'�}~���t2O֛�D:����}Q \ No newline at end of file --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/95/9bf3992d230c71f72134061db535a4f4a05c77 ./wordpress-3.4.1/.git/objects/95/9bf3992d230c71f72134061db535a4f4a05c77 *** ./wordpress-3.4/.git/objects/95/9bf3992d230c71f72134061db535a4f4a05c77 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/95/9bf3992d230c71f72134061db535a4f4a05c77 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - x�U]o�6ݫ�+.�"Q�d@4�4^�h��_yh���-.4��T/��%%'���}q��s?Ϲ73mgp���o�e֗��+�v-w�w��fq%�b���V8�>�u�w%�]@��2*� �;SeM1��,�Qb'0J�+5�H[wK4�/0�k��g�Y�j��kk�P]>*�Let(��>�����-�s�-��c�:#��Ʉ�+C�[�%+�2��_�V�ک6�|ɿ��g�'��,�5Vl�,'p�ށ�ZIX8�f��q�j�2��qs9�4˨!����R���H����l[�úA�(iG-N߿��iOh�3J>?���p MՏ�c 2�'3����(�{���*NY��k���G���Z�"һ���]����y�o��|���~tuS�[����OL�h;$�'Z�h�+���l�s�}�y�P�C�8�K�10�xxƔ����l�Dt� x(� �IP���I�w|�E>i�R�N�4����'�df�j-���k��}FVRW�Z� �7��1**:П�Q,���cZ�$.ѫ�����U�& 04�� - {����eE���h�P�mk�紝�ouS��QlzSҘH1�g㛟Q�^�-�<������g�) �].��SA��H�L�jgV89�6'U�Y�p�e��V����VpF�l'����Y>�n[jy�Y�e�h����E?|�a�SO?s�"�T��C�z� �gI�|�dh���-_���(齽K����T�&����v�"�`C�vʷ�:R{瞸Q��'@����� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/95/b0cb30e92491c0ed7fabb89c4e8416622dc73c and ./wordpress-3.4.1/.git/objects/95/b0cb30e92491c0ed7fabb89c4e8416622dc73c differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/95/e7b32a4ae89140c2fa2001deb443dc402f1d5e ./wordpress-3.4.1/.git/objects/95/e7b32a4ae89140c2fa2001deb443dc402f1d5e *** ./wordpress-3.4/.git/objects/95/e7b32a4ae89140c2fa2001deb443dc402f1d5e 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/95/e7b32a4ae89140c2fa2001deb443dc402f1d5e 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,5 **** - x�T]hY�&���"Z�˸�iˤ�Ve�&�!Zc���E�drӎN'�LR��e��O������O� - ���"��(� ��ݙ4��腹����;9�hU�Zb]��L��Bq�fff|�G�V�W.A+���T*�N�z���NJi��]ui�~�?�-xB� - FiC�`xNo.7 �Hnn��ix�u��/�g��@�MIx0�#I� - T�o�ѪS%�Mb7������>�O�s�x�Ḓ���-�X�J�1�GH��jL���[�=����)�W�m�ce�T��I{�_}ۉ;���f����Ӳ�?be�Y��8��u��.fw3��:�d�����=2f`?Tؑ#n#'��SrZ�g���}!V�㣩l����2�O�\v��Q[��6��MCi$� .*(�e�b�*$�V�i!�8e���s�y�9�O�{��b��A��/�������T[���r�ƽ��Wf�jd�P��/5�� �����c|���u��UW�O�5<��!����"e�H�NP�-�'��&���餔f��{k��O{�^;���dT�Ϟ�-+�jYV��/z�B�QM��G�MݪnS��}|۬4NQ�����R}�5ؘ���՟s����RZ��5 M�[)���w��-(gK��W<`ٺ��m>�#J뽦����g����-��<pm�Qs���.P��@��L���hU�� Z/ǖ�2�ѕ�� - ��>Os�'�qQ�W^�aȥ�$9,���[��3��Ӿ����DO����xp6��\�8��܍��^�t���qu���?W�m7^& \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/95/f0aa091d3b09eed515b93d23ccb5bcf0fc1fb4 and ./wordpress-3.4.1/.git/objects/95/f0aa091d3b09eed515b93d23ccb5bcf0fc1fb4 differ Binary files ./wordpress-3.4/.git/objects/96/0726211b18fad7c9cba64cd8d4e0f1edc2dfdc and ./wordpress-3.4.1/.git/objects/96/0726211b18fad7c9cba64cd8d4e0f1edc2dfdc differ Binary files ./wordpress-3.4/.git/objects/96/3337e94b93bc75e99408b9398c6cafffbed606 and ./wordpress-3.4.1/.git/objects/96/3337e94b93bc75e99408b9398c6cafffbed606 differ Binary files ./wordpress-3.4/.git/objects/96/4cd4982f4771938c9779fe4cc560738465cc20 and ./wordpress-3.4.1/.git/objects/96/4cd4982f4771938c9779fe4cc560738465cc20 differ Binary files ./wordpress-3.4/.git/objects/96/6b1c1aa559aad402661e8e18cfca9b02da0a5a and ./wordpress-3.4.1/.git/objects/96/6b1c1aa559aad402661e8e18cfca9b02da0a5a differ Binary files ./wordpress-3.4/.git/objects/97/0a1f805bee39c60d4cc88ef31a6e648079a189 and ./wordpress-3.4.1/.git/objects/97/0a1f805bee39c60d4cc88ef31a6e648079a189 differ Binary files ./wordpress-3.4/.git/objects/97/3f17849cd81459d82ae4b2603a0a312b4928e1 and ./wordpress-3.4.1/.git/objects/97/3f17849cd81459d82ae4b2603a0a312b4928e1 differ Binary files ./wordpress-3.4/.git/objects/97/b343d98c744561e1acb8f98d2b1a24a5bc0da2 and ./wordpress-3.4.1/.git/objects/97/b343d98c744561e1acb8f98d2b1a24a5bc0da2 differ Binary files ./wordpress-3.4/.git/objects/97/cec2e81cad39a7f0f17f0c4f7736f3d6c7d612 and ./wordpress-3.4.1/.git/objects/97/cec2e81cad39a7f0f17f0c4f7736f3d6c7d612 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/97/f359c573d9029ba2f06a583d4d685d4ac10b4b ./wordpress-3.4.1/.git/objects/97/f359c573d9029ba2f06a583d4d685d4ac10b4b *** ./wordpress-3.4/.git/objects/97/f359c573d9029ba2f06a583d4d685d4ac10b4b 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/97/f359c573d9029ba2f06a583d4d685d4ac10b4b 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - xmQMo�0���Z�M/��J=�])U���e�cq6���Q��g�R���]����|�<v#�n�����'�TU��7�x���x3F�l���0���<�ѹ�"���PΒ��1b#N&v8��j������BY�A�G��T&�[�#~yM��UƳ7�.��w_:e�x! >0c'�i��];�&@�obȑ�3KcM�P�o�m�I���!���7)Q��.H+�/>K�1���T�K�SU� ��� {�4�l��.O - f?���q������nU�UuOg}�Ŷ�8��]f&.�V�\I���^�|�~����3��~��4ʠZ�\�����I��Hr�z)\U��@�Z�S���d����9 \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/98/1b1af593600b94c253616ff94efff2ebbe931b and ./wordpress-3.4.1/.git/objects/98/1b1af593600b94c253616ff94efff2ebbe931b differ Binary files ./wordpress-3.4/.git/objects/98/246c3fbfb6727c4dbc91d3d772dbf8153a1b88 and ./wordpress-3.4.1/.git/objects/98/246c3fbfb6727c4dbc91d3d772dbf8153a1b88 differ Binary files ./wordpress-3.4/.git/objects/98/504ee4070c640e95c42f166d1d25baa7a4392d and ./wordpress-3.4.1/.git/objects/98/504ee4070c640e95c42f166d1d25baa7a4392d differ Binary files ./wordpress-3.4/.git/objects/98/8f6b22c6505aa02761653112e7bbb1e69cb010 and ./wordpress-3.4.1/.git/objects/98/8f6b22c6505aa02761653112e7bbb1e69cb010 differ Binary files ./wordpress-3.4/.git/objects/98/cfc3452abc508670f4984d7d3ce419e803a1fb and ./wordpress-3.4.1/.git/objects/98/cfc3452abc508670f4984d7d3ce419e803a1fb differ Binary files ./wordpress-3.4/.git/objects/98/e32a5937afac3673ee669d874f7c8a22f4cdb5 and ./wordpress-3.4.1/.git/objects/98/e32a5937afac3673ee669d874f7c8a22f4cdb5 differ Binary files ./wordpress-3.4/.git/objects/99/251dcfe40face1c7763573d8979dddada8de3c and ./wordpress-3.4.1/.git/objects/99/251dcfe40face1c7763573d8979dddada8de3c differ Binary files ./wordpress-3.4/.git/objects/99/2709a81a0f14951109e653e1da910de39c9a3c and ./wordpress-3.4.1/.git/objects/99/2709a81a0f14951109e653e1da910de39c9a3c differ Binary files ./wordpress-3.4/.git/objects/99/68662e70551a610439e594790f52827a7638a4 and ./wordpress-3.4.1/.git/objects/99/68662e70551a610439e594790f52827a7638a4 differ Binary files ./wordpress-3.4/.git/objects/99/70de267bec887f26d35aad2fda49aa156ca4a1 and ./wordpress-3.4.1/.git/objects/99/70de267bec887f26d35aad2fda49aa156ca4a1 differ Binary files ./wordpress-3.4/.git/objects/99/8e96854aade30d4123da87b06d27a492f7e5e1 and ./wordpress-3.4.1/.git/objects/99/8e96854aade30d4123da87b06d27a492f7e5e1 differ Binary files ./wordpress-3.4/.git/objects/99/b477481721e0d127fe98012cb3771772792de6 and ./wordpress-3.4.1/.git/objects/99/b477481721e0d127fe98012cb3771772792de6 differ Binary files ./wordpress-3.4/.git/objects/99/c45cef250a0546451e8d797a1d49ec65e7c952 and ./wordpress-3.4.1/.git/objects/99/c45cef250a0546451e8d797a1d49ec65e7c952 differ Binary files ./wordpress-3.4/.git/objects/9a/a355a12f1bd4140ea16fd137eab18697173a03 and ./wordpress-3.4.1/.git/objects/9a/a355a12f1bd4140ea16fd137eab18697173a03 differ Binary files ./wordpress-3.4/.git/objects/9a/c40f9ecd7ce5d011d04fdded7ce0c4490b9b83 and ./wordpress-3.4.1/.git/objects/9a/c40f9ecd7ce5d011d04fdded7ce0c4490b9b83 differ Binary files ./wordpress-3.4/.git/objects/9a/c96b449c50fc541bd9e26273557049c1b61025 and ./wordpress-3.4.1/.git/objects/9a/c96b449c50fc541bd9e26273557049c1b61025 differ Binary files ./wordpress-3.4/.git/objects/9a/e83f08debfdef4d617cbd5cf2166096c782910 and ./wordpress-3.4.1/.git/objects/9a/e83f08debfdef4d617cbd5cf2166096c782910 differ Binary files ./wordpress-3.4/.git/objects/9a/e96482d25175133acf372abe72712a3f8fabd3 and ./wordpress-3.4.1/.git/objects/9a/e96482d25175133acf372abe72712a3f8fabd3 differ Binary files ./wordpress-3.4/.git/objects/9b/2d028098e2627460aa1e07f73cb469f08fed2a and ./wordpress-3.4.1/.git/objects/9b/2d028098e2627460aa1e07f73cb469f08fed2a differ Binary files ./wordpress-3.4/.git/objects/9b/5c68c5a15d1007a1dd48cd0f261da079769e4f and ./wordpress-3.4.1/.git/objects/9b/5c68c5a15d1007a1dd48cd0f261da079769e4f differ Binary files ./wordpress-3.4/.git/objects/9b/92578fb5867463d5a88a0d8a072a62e772749a and ./wordpress-3.4.1/.git/objects/9b/92578fb5867463d5a88a0d8a072a62e772749a differ Binary files ./wordpress-3.4/.git/objects/9b/998ff2a3d582b8a3dadff670db2637fde1d795 and ./wordpress-3.4.1/.git/objects/9b/998ff2a3d582b8a3dadff670db2637fde1d795 differ Binary files ./wordpress-3.4/.git/objects/9b/9c43f9d6cf0e35c2ff8c1d4a8ce0da4d7f3f46 and ./wordpress-3.4.1/.git/objects/9b/9c43f9d6cf0e35c2ff8c1d4a8ce0da4d7f3f46 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/9c/702c659561e06e28814e5084c2d89fad423aab ./wordpress-3.4.1/.git/objects/9c/702c659561e06e28814e5084c2d89fad423aab *** ./wordpress-3.4/.git/objects/9c/702c659561e06e28814e5084c2d89fad423aab 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/9c/702c659561e06e28814e5084c2d89fad423aab 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,5 **** - x�RMO�0�k��K�!��(�qX q�[�C;�Ʈ�F������6}��73�ʸ��]��MokBg���Y��:@�s8�ăx��x�\ݿjK�Zӣ���~�GI�q�.:�E�z^��Y�������_������o�~�^�&r����it�6X�|52z,�nu���z�^�Q��ׁ����@�Di�]Sˣ��LY��L�{��e�kŞgl�2�fa��r� �&�p���E�#�p�@��I��IF7$`>��a2�Mwi��w��Ϡ�Ĵt��l �;-�1KΩ���CA��N��2��#�lj��]r��c��[ y�]�+�B���D�Ji+Ƣ��b[� - �&���]F���'|N�I�ģ�r���R�q�� =i����X - �*% - � - ���b�A��GT�m�<H�&R8��G.�� ���� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/9c/cb62f263753ecee97cd24fdcf5d1ff2b86dcc5 and ./wordpress-3.4.1/.git/objects/9c/cb62f263753ecee97cd24fdcf5d1ff2b86dcc5 differ Binary files ./wordpress-3.4/.git/objects/9c/f6b1a29cdafc3e47cb26b2daaed66a38cc231b and ./wordpress-3.4.1/.git/objects/9c/f6b1a29cdafc3e47cb26b2daaed66a38cc231b differ Binary files ./wordpress-3.4/.git/objects/9d/072265bb9d7d5d4eeaaa9aadb44a49a60e5fe3 and ./wordpress-3.4.1/.git/objects/9d/072265bb9d7d5d4eeaaa9aadb44a49a60e5fe3 differ Binary files ./wordpress-3.4/.git/objects/9d/0882f34adf5c03ea25524dd543209bb8c68836 and ./wordpress-3.4.1/.git/objects/9d/0882f34adf5c03ea25524dd543209bb8c68836 differ Binary files ./wordpress-3.4/.git/objects/9d/112ca61ce50adeeb99354d070c0effc72006e4 and ./wordpress-3.4.1/.git/objects/9d/112ca61ce50adeeb99354d070c0effc72006e4 differ Binary files ./wordpress-3.4/.git/objects/9d/33795f4991f97ad8dde1ae1434773e51a460de and ./wordpress-3.4.1/.git/objects/9d/33795f4991f97ad8dde1ae1434773e51a460de differ Binary files ./wordpress-3.4/.git/objects/9d/49fa2061efa4a179ceb5ceb0f34c0a293df16b and ./wordpress-3.4.1/.git/objects/9d/49fa2061efa4a179ceb5ceb0f34c0a293df16b differ Binary files ./wordpress-3.4/.git/objects/9d/b99bd59bc749117e192d5431cf9d3c2b5660ce and ./wordpress-3.4.1/.git/objects/9d/b99bd59bc749117e192d5431cf9d3c2b5660ce differ Binary files ./wordpress-3.4/.git/objects/9d/f98fbe29db1e9afd620d207a0ac5d61550a1c1 and ./wordpress-3.4.1/.git/objects/9d/f98fbe29db1e9afd620d207a0ac5d61550a1c1 differ Binary files ./wordpress-3.4/.git/objects/9e/0bf22e3aa17140c85bd30dc98512dda076bfe2 and ./wordpress-3.4.1/.git/objects/9e/0bf22e3aa17140c85bd30dc98512dda076bfe2 differ Binary files ./wordpress-3.4/.git/objects/9e/2d6a86a6bf536b1e8f37198264c0b861f16d2e and ./wordpress-3.4.1/.git/objects/9e/2d6a86a6bf536b1e8f37198264c0b861f16d2e differ Binary files ./wordpress-3.4/.git/objects/9e/a3565692f721dea7425f0050d27e299e869be9 and ./wordpress-3.4.1/.git/objects/9e/a3565692f721dea7425f0050d27e299e869be9 differ Binary files ./wordpress-3.4/.git/objects/9e/ab214553ddacb770d4465c02a4273b19810da9 and ./wordpress-3.4.1/.git/objects/9e/ab214553ddacb770d4465c02a4273b19810da9 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/9f/30076bd4f1d070d511f90a0e8cc8f63ff7f016 ./wordpress-3.4.1/.git/objects/9f/30076bd4f1d070d511f90a0e8cc8f63ff7f016 *** ./wordpress-3.4/.git/objects/9f/30076bd4f1d070d511f90a0e8cc8f63ff7f016 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/9f/30076bd4f1d070d511f90a0e8cc8f63ff7f016 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,3 **** - xuR[K�0����<� �n*�1E7|�EL�aHI�3쒘�n�{s�]��!�s�w99y)s���/��VE�p�5/��0g;.��4���Nl��zT�����R��Fc|��yS8}�\��8�8����B��>����e}�D�6�T32��+����w�۸� - �K���T!�1k�����?d0kT�U��٠�vR�꽊=i[!p��:H��R� /�Ԏ - � y��Ӛm#���8�v�lε�% sthg�C5@f{�i�ef]��2�}M<�W�HW�,�r�h�~�FϮ��Q7i����L�=�������]K킔5C�����B�f��� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/9f/371bccae6ec9a11ff6dbb7bc5d39a1decaba3d and ./wordpress-3.4.1/.git/objects/9f/371bccae6ec9a11ff6dbb7bc5d39a1decaba3d differ Binary files ./wordpress-3.4/.git/objects/9f/8dad5867b265ff203afe0df5aceced5ea2d5b2 and ./wordpress-3.4.1/.git/objects/9f/8dad5867b265ff203afe0df5aceced5ea2d5b2 differ Binary files ./wordpress-3.4/.git/objects/9f/b36c0ccbe41f0362d766cf713f64e442db42df and ./wordpress-3.4.1/.git/objects/9f/b36c0ccbe41f0362d766cf713f64e442db42df differ Binary files ./wordpress-3.4/.git/objects/9f/c3251d7098660fb86e23224ed2ef0e205e896e and ./wordpress-3.4.1/.git/objects/9f/c3251d7098660fb86e23224ed2ef0e205e896e differ Binary files ./wordpress-3.4/.git/objects/9f/c963f59bcec47c25765c1719783983bb11ace2 and ./wordpress-3.4.1/.git/objects/9f/c963f59bcec47c25765c1719783983bb11ace2 differ Binary files ./wordpress-3.4/.git/objects/9f/e6e1243bc0a7cf652985c3edd0d4dc9d8bdfb8 and ./wordpress-3.4.1/.git/objects/9f/e6e1243bc0a7cf652985c3edd0d4dc9d8bdfb8 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/9f/ee68601d24ff7a1b5f8c676e9cb40370999388 ./wordpress-3.4.1/.git/objects/9f/ee68601d24ff7a1b5f8c676e9cb40370999388 *** ./wordpress-3.4/.git/objects/9f/ee68601d24ff7a1b5f8c676e9cb40370999388 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/9f/ee68601d24ff7a1b5f8c676e9cb40370999388 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - xU�� - �0��ߖ��tP�AA�Ap�I�߶����o������Xn�>tA�E!P��!r�6nֻ�#���$��!��Z��Gs���DkA��ҫ��A��N}8#:_�'���\UKY֖ � ]�0pÄ�C3z��q�K�ȷ�m�8� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/9f/f24384ccd5682c0361789d8819f373da65f56f and ./wordpress-3.4.1/.git/objects/9f/f24384ccd5682c0361789d8819f373da65f56f differ Binary files ./wordpress-3.4/.git/objects/a0/0467c297fa6470ecc57f0810611be777497415 and ./wordpress-3.4.1/.git/objects/a0/0467c297fa6470ecc57f0810611be777497415 differ Binary files ./wordpress-3.4/.git/objects/a0/14a515fccf6983f3554d58194564284c10cd15 and ./wordpress-3.4.1/.git/objects/a0/14a515fccf6983f3554d58194564284c10cd15 differ Binary files ./wordpress-3.4/.git/objects/a0/36f28553c8289e4f94b20bfd135886adebd8a7 and ./wordpress-3.4.1/.git/objects/a0/36f28553c8289e4f94b20bfd135886adebd8a7 differ Binary files ./wordpress-3.4/.git/objects/a0/d4ef2ae38b8a0be50b61bcaae842874e414dbc and ./wordpress-3.4.1/.git/objects/a0/d4ef2ae38b8a0be50b61bcaae842874e414dbc differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/a0/dea11fb18d308b7a5951ad720b260da39ed87e ./wordpress-3.4.1/.git/objects/a0/dea11fb18d308b7a5951ad720b260da39ed87e *** ./wordpress-3.4/.git/objects/a0/dea11fb18d308b7a5951ad720b260da39ed87e 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/a0/dea11fb18d308b7a5951ad720b260da39ed87e 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - x]�1O�0�Y�_�(Cڈ$0tjڲ�!T��r�Kc��Q����,Q����Z�����]��Y� þ#���k� � ���U�#��p�� �u�|!�y�E�)��;ȷ�����oc!㯇=��Q��6Q�n��e��:���r��6If�J�3���k�P�����:ןc��6�g8#q4Ζ�G��ik{x;�~�Q - �!�ü���a��ԙm��rPM�t8Ӊ�װ��Q[��t��0-��[>A+3� W��E1͚0:N)�<O}{CJ���C/�@��>"��X�Cr�4�J洭���A�R���0zI�=B/�$�����Z������ \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/a0/e09c766819b5f4f85a1e4aa7aaaa6676d177fc and ./wordpress-3.4.1/.git/objects/a0/e09c766819b5f4f85a1e4aa7aaaa6676d177fc differ Binary files ./wordpress-3.4/.git/objects/a0/fc6af428ee01640a50cb290d87bb9d04382bae and ./wordpress-3.4.1/.git/objects/a0/fc6af428ee01640a50cb290d87bb9d04382bae differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/a0/ffabf9fcd68a22663e18b2cff36bb56e2cef44 ./wordpress-3.4.1/.git/objects/a0/ffabf9fcd68a22663e18b2cff36bb56e2cef44 *** ./wordpress-3.4/.git/objects/a0/ffabf9fcd68a22663e18b2cff36bb56e2cef44 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/a0/ffabf9fcd68a22663e18b2cff36bb56e2cef44 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - xU�� - �0��ߖ��tP�AA�Ap�I�߶����o������Xn�>tA�E!P��!r�6nֻ�#���$��!��Z��Gs���DkA��ҫ��A��N}8#:_�'���\UKY֖ � ]�0pÄ�C3z��q�K�ȷ�m�8� \ No newline at end of file --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/a1/19caa48d230987f73a2e9fd7c9973492d229c5 ./wordpress-3.4.1/.git/objects/a1/19caa48d230987f73a2e9fd7c9973492d229c5 *** ./wordpress-3.4/.git/objects/a1/19caa48d230987f73a2e9fd7c9973492d229c5 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/a1/19caa48d230987f73a2e9fd7c9973492d229c5 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,5 **** - x�T[hU���^���*&>w���ev�Y��e��n\w�4`��9Ɏ�\2s���!F%T+�CUjkii �^�B+�(�ڇ�������iiY�l�ч�f����9�?�a�X.��\oϚ�͝E���P�d�!o���udل�>\ppU��2�KDy��#�Q7Eu��>ܗ�)���p�r �����\MB�Рi'���40�$�;��YWFesǘ� - c�E}lHz����&a Ԭa�kI��+�}�fh�2�CIz!��lȎ�@,C:�Cg�l$����,d ǰ\���'B�x�1��})I�1vE��V��j$�x�+B��q!b�Gm��B���fP��{��M��Vr*8I�HR��lv��EJ��4�aÐ�� �������0�����.b��w*�N�c�� &�{����D#���R�a��+�qFI��$l��y!%G�(䡠B��j< e%�K15.���a���(,T"*'�� - �U%6�J@>.���flk���~M�w+?+�Ұ�g�������@.�@V�M;���Y�VA��:2Ҟc�V}Es��K�l��9O�l��RBDi(qOb_���f � ��?��V��K�O���A6�/���_��z&���6�������٩�����F�a�R�&�+q��@N�M�L�H�h�g�T�v�ցUk'�je�ퟚW���rϟ��8y1:�y��{� - - ��&V��2����?&n�.��ŏ\:Q����+s��υ�߭����=e!��s�Xc�ޝSL�[]�߆������r��[�.\:&3zy�Gv7O����ͻ�nVn�u���;������kZ�}������3��{����/��?��ל;�ɗTu���A���ɨ��I����t \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/a1/579c85f22760df55dc01ffa04c2a00aca7917a and ./wordpress-3.4.1/.git/objects/a1/579c85f22760df55dc01ffa04c2a00aca7917a differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/a1/5a4c3fd31f95f26a2d473ad4d9ee89928a0cfb ./wordpress-3.4.1/.git/objects/a1/5a4c3fd31f95f26a2d473ad4d9ee89928a0cfb *** ./wordpress-3.4/.git/objects/a1/5a4c3fd31f95f26a2d473ad4d9ee89928a0cfb 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/a1/5a4c3fd31f95f26a2d473ad4d9ee89928a0cfb 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - xU��N�0���NMrp�ʭH�8��c��[X5��Q_;m@wwf�����ܮ����Wm�(4x�t�p�K �2F;�㘂I,�8tV�7���$�$؏@1��8���mGNt>��6�N��ܪū�����g�T��}O��Sa�۹��W��J�n��nU�V�'�YΖ�˶�N���R6�I9�du��.�B������d� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/a1/a00be500e43d5b6268345422138bb084e5f3d5 and ./wordpress-3.4.1/.git/objects/a1/a00be500e43d5b6268345422138bb084e5f3d5 differ Binary files ./wordpress-3.4/.git/objects/a1/a5a5b142a09a5f88ab1abf462e2564254cac12 and ./wordpress-3.4.1/.git/objects/a1/a5a5b142a09a5f88ab1abf462e2564254cac12 differ Binary files ./wordpress-3.4/.git/objects/a1/ce53abb5102d6b986fc7f1e2eb3b010c6dfe31 and ./wordpress-3.4.1/.git/objects/a1/ce53abb5102d6b986fc7f1e2eb3b010c6dfe31 differ Binary files ./wordpress-3.4/.git/objects/a1/fb4cd09e0620da34409bd46e7732f111c39e11 and ./wordpress-3.4.1/.git/objects/a1/fb4cd09e0620da34409bd46e7732f111c39e11 differ Binary files ./wordpress-3.4/.git/objects/a2/32ba55f2dc767578104e47524fcc6365a988ca and ./wordpress-3.4.1/.git/objects/a2/32ba55f2dc767578104e47524fcc6365a988ca differ Binary files ./wordpress-3.4/.git/objects/a2/86eb98e662282c1b16d78b587dca1db2b75fc1 and ./wordpress-3.4.1/.git/objects/a2/86eb98e662282c1b16d78b587dca1db2b75fc1 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/a2/d3f1ae02e78f57782dc02304767a642779fa8b ./wordpress-3.4.1/.git/objects/a2/d3f1ae02e78f57782dc02304767a642779fa8b *** ./wordpress-3.4/.git/objects/a2/d3f1ae02e78f57782dc02304767a642779fa8b 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/a2/d3f1ae02e78f57782dc02304767a642779fa8b 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,4 **** - x�T]k�0�k�+��hm�4�C;c� ��Q�C�,]�je�Hr�����i�lIW��s�Δ��l~7{��Td_*�RZx_�Q�4ͤ�O��F��b�C]���X�G��^�����F�����%��u���� ��>zd;��R�,O�d��>lJ��Tu5yt�v`����v:���gwt�D�ŀ�??�ș�bN����I�L2#�hN�B����j�>,�?(��U�bm4,�A��2M\H!@/Q�Q�[�J��P��ꬔw��F{��Z��$g��`�K�Sz�!wCY,�|L����εz�@�e�V �,�ϖ>�k��+(-VX��RR����RRÑo_��m�[T�DQ����Sf��'d����J�'l�[Ɗ��tAٞN���S�Dg���or - ��9:����2��!W�lL2㋐����,���~-�ӵ5 �>���� - _��Q�F - _���/IA�a�c�orVJu����#���\^����h�*��Pmtp ^�������W�-%�dJM�%��jx�L^���A�[_�3 a�G�V{x���hJ� �V��y�(JvL�x�|�m���G����};�\�4��ұeo����z��,��^] �����Y�#���Q�3�w0�j�'� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/a3/331da95078f8ce149330b44267af7345990c2c and ./wordpress-3.4.1/.git/objects/a3/331da95078f8ce149330b44267af7345990c2c differ Binary files ./wordpress-3.4/.git/objects/a3/3c4983315724c05abbb694bcf38ab9c6405d05 and ./wordpress-3.4.1/.git/objects/a3/3c4983315724c05abbb694bcf38ab9c6405d05 differ Binary files ./wordpress-3.4/.git/objects/a3/5a2802e78e643a3ca9a0ea33749f9854d6f7cb and ./wordpress-3.4.1/.git/objects/a3/5a2802e78e643a3ca9a0ea33749f9854d6f7cb differ Binary files ./wordpress-3.4/.git/objects/a3/82e0ffdf3cbe1ba7e1e7ad75143a081fc60dec and ./wordpress-3.4.1/.git/objects/a3/82e0ffdf3cbe1ba7e1e7ad75143a081fc60dec differ Binary files ./wordpress-3.4/.git/objects/a3/91fade5350e6e65029d73d713134dd5ba97db5 and ./wordpress-3.4.1/.git/objects/a3/91fade5350e6e65029d73d713134dd5ba97db5 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/a3/be929ac7cc32f16535f4e59959f32b20af4570 ./wordpress-3.4.1/.git/objects/a3/be929ac7cc32f16535f4e59959f32b20af4570 *** ./wordpress-3.4/.git/objects/a3/be929ac7cc32f16535f4e59959f32b20af4570 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/a3/be929ac7cc32f16535f4e59959f32b20af4570 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,4 **** - x=�=�0`��[�����Hp$6�(m-�Ip�����O��a��7���{ѵ����D - R@��'Y - �u$g�k�Ff�ړ��C����c% i�-���N���s'�+�r9���]�&s� - �A��+�9�)�`1.�����U�Xx�z|S��E) \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/a4/0ae0d7e8c870d3675c8975e3a6bb0a059f11ff and ./wordpress-3.4.1/.git/objects/a4/0ae0d7e8c870d3675c8975e3a6bb0a059f11ff differ Binary files ./wordpress-3.4/.git/objects/a4/1222687508d27e34408a55f758ee5a7c7e87b5 and ./wordpress-3.4.1/.git/objects/a4/1222687508d27e34408a55f758ee5a7c7e87b5 differ Binary files ./wordpress-3.4/.git/objects/a4/5f1c9b60afe71fa11e68f2e389cc031ff6c62e and ./wordpress-3.4.1/.git/objects/a4/5f1c9b60afe71fa11e68f2e389cc031ff6c62e differ Binary files ./wordpress-3.4/.git/objects/a4/6f6f89beefdd2423b394529857781f0c0e83ba and ./wordpress-3.4.1/.git/objects/a4/6f6f89beefdd2423b394529857781f0c0e83ba differ Binary files ./wordpress-3.4/.git/objects/a4/c6e9d4eb8a8d65e19e9aa3fbbd23954f147c38 and ./wordpress-3.4.1/.git/objects/a4/c6e9d4eb8a8d65e19e9aa3fbbd23954f147c38 differ Binary files ./wordpress-3.4/.git/objects/a4/d600aa6b726f2ea6b31aed6660b252ce981783 and ./wordpress-3.4.1/.git/objects/a4/d600aa6b726f2ea6b31aed6660b252ce981783 differ Binary files ./wordpress-3.4/.git/objects/a5/07c4816cfd7a5368880248f01d8eaa3569e71c and ./wordpress-3.4.1/.git/objects/a5/07c4816cfd7a5368880248f01d8eaa3569e71c differ Binary files ./wordpress-3.4/.git/objects/a5/24b1ac39c2c2ceecf87477d22a7188b81e56df and ./wordpress-3.4.1/.git/objects/a5/24b1ac39c2c2ceecf87477d22a7188b81e56df differ Binary files ./wordpress-3.4/.git/objects/a5/a29822bc6d2abcbda3bf4e70a78e0d0377b3f7 and ./wordpress-3.4.1/.git/objects/a5/a29822bc6d2abcbda3bf4e70a78e0d0377b3f7 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/a5/dbc9899f152f4e274ecc49a3e70fbab14ac8e4 ./wordpress-3.4.1/.git/objects/a5/dbc9899f152f4e274ecc49a3e70fbab14ac8e4 *** ./wordpress-3.4/.git/objects/a5/dbc9899f152f4e274ecc49a3e70fbab14ac8e4 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/a5/dbc9899f152f4e274ecc49a3e70fbab14ac8e4 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,3 **** - xU���0D��� - RD�@�"FĈ�&�%N��$Eb����zR��7���w^Te)��k0'�"d ��!�u6D�hɁGgz���p��>�a�F�/lB�aPh��_j]k��k�Ls%�u8�_ - ���Hs��lރes�3�BVcC��(`��(����>�HN \ No newline at end of file --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/a5/e0340e4c140d46c772af73ea761af4d8a6f3b1 ./wordpress-3.4.1/.git/objects/a5/e0340e4c140d46c772af73ea761af4d8a6f3b1 *** ./wordpress-3.4/.git/objects/a5/e0340e4c140d46c772af73ea761af4d8a6f3b1 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/a5/e0340e4c140d46c772af73ea761af4d8a6f3b1 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - x��?K�`Ư��sG�tpq�G�#��8���!�PG�V��HEk)V�i-bJ�A���d'��}�����^x����{�%C��t2��DQO4���)�՛UR-��U��J� ��9Vy���1~����g �1�d^˚��;cV;0Y��]�%��2�9� _\�cI�G-��:q=��sH»�t-|i���0��{���1�$<�ҵ��-��Q��:Uy]����vN��W�ď����z��z�`0��d�������ߟ7�$���}Hx{/�P�`�ӱ���Fe���j�d�>�0 ������n9��I���"C����a��n)����UV�꜂�e�l�)��5��| \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/a6/125b9ca35a4475d3b1b643eedf88b09f20c06a and ./wordpress-3.4.1/.git/objects/a6/125b9ca35a4475d3b1b643eedf88b09f20c06a differ Binary files ./wordpress-3.4/.git/objects/a6/155ff122140ed71244da90b467992336c999aa and ./wordpress-3.4.1/.git/objects/a6/155ff122140ed71244da90b467992336c999aa differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/a6/1d56d44f83e095248ebf9cf28d0fd6b3060889 ./wordpress-3.4.1/.git/objects/a6/1d56d44f83e095248ebf9cf28d0fd6b3060889 *** ./wordpress-3.4/.git/objects/a6/1d56d44f83e095248ebf9cf28d0fd6b3060889 2012-06-13 17:00:00.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/a6/1d56d44f83e095248ebf9cf28d0fd6b3060889 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - x+)JMU064`040031QH�I-*�K�Lc���B{�x�]��`eєO;}���JKJ��r�lx��]�(�s��E�������l�:��Nq=�_�!���D]I����̢\�2�b�Q����ī_��%�hڍ�peEy�E�NL���Ti��e=���5b - ���R��F��b~��[g�����\��B�����̪������C�ֺ�n��Dc��[�t���h@U�#3��y��'��k�oΑ^���s�ߋ+���� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/a6/456f89dd86052508f8619cbf8070e89d54a755 and ./wordpress-3.4.1/.git/objects/a6/456f89dd86052508f8619cbf8070e89d54a755 differ Binary files ./wordpress-3.4/.git/objects/a6/828b2dedfdcc35716b805314a970fad612080e and ./wordpress-3.4.1/.git/objects/a6/828b2dedfdcc35716b805314a970fad612080e differ Binary files ./wordpress-3.4/.git/objects/a6/ce9c89c07218226e51ceb89e78191ec5baf657 and ./wordpress-3.4.1/.git/objects/a6/ce9c89c07218226e51ceb89e78191ec5baf657 differ Binary files ./wordpress-3.4/.git/objects/a6/daed9d0b54a4b464948e83bab3dac595bca8cd and ./wordpress-3.4.1/.git/objects/a6/daed9d0b54a4b464948e83bab3dac595bca8cd differ Binary files ./wordpress-3.4/.git/objects/a7/0638ab71ac31647efcb9207bd069d1efeae648 and ./wordpress-3.4.1/.git/objects/a7/0638ab71ac31647efcb9207bd069d1efeae648 differ Binary files ./wordpress-3.4/.git/objects/a7/0fb347bd2c5ad14901538581b5786b2df9686f and ./wordpress-3.4.1/.git/objects/a7/0fb347bd2c5ad14901538581b5786b2df9686f differ Binary files ./wordpress-3.4/.git/objects/a7/146019dc0483240ecf72aaa6a8f6850e5ad282 and ./wordpress-3.4.1/.git/objects/a7/146019dc0483240ecf72aaa6a8f6850e5ad282 differ Binary files ./wordpress-3.4/.git/objects/a7/1d47484aabfe8cd1fd530f3089540961ae4ab2 and ./wordpress-3.4.1/.git/objects/a7/1d47484aabfe8cd1fd530f3089540961ae4ab2 differ Binary files ./wordpress-3.4/.git/objects/a7/507719fc9580fdc7c4edf06eddd97ff471aa24 and ./wordpress-3.4.1/.git/objects/a7/507719fc9580fdc7c4edf06eddd97ff471aa24 differ Binary files ./wordpress-3.4/.git/objects/a7/942f631b1130f46ebe82c631c2d177733beb81 and ./wordpress-3.4.1/.git/objects/a7/942f631b1130f46ebe82c631c2d177733beb81 differ Binary files ./wordpress-3.4/.git/objects/a7/a8186e198d651cb9b5267351dc35cbac930597 and ./wordpress-3.4.1/.git/objects/a7/a8186e198d651cb9b5267351dc35cbac930597 differ Binary files ./wordpress-3.4/.git/objects/a7/e14a80f7bb0376ce53beda7e367a4efaeafcf8 and ./wordpress-3.4.1/.git/objects/a7/e14a80f7bb0376ce53beda7e367a4efaeafcf8 differ Binary files ./wordpress-3.4/.git/objects/a7/f359cde033c7fee0d1f14c0f9d4c88f178d750 and ./wordpress-3.4.1/.git/objects/a7/f359cde033c7fee0d1f14c0f9d4c88f178d750 differ Binary files ./wordpress-3.4/.git/objects/a8/28ad6f5060b842c350da0839750a419c5db5a2 and ./wordpress-3.4.1/.git/objects/a8/28ad6f5060b842c350da0839750a419c5db5a2 differ Binary files ./wordpress-3.4/.git/objects/a8/7f1f461f4fda320acf74cfbaaef0e19ac86958 and ./wordpress-3.4.1/.git/objects/a8/7f1f461f4fda320acf74cfbaaef0e19ac86958 differ Binary files ./wordpress-3.4/.git/objects/a8/dac35c257b88344ee1ceddbfbe24b597d30f80 and ./wordpress-3.4.1/.git/objects/a8/dac35c257b88344ee1ceddbfbe24b597d30f80 differ Binary files ./wordpress-3.4/.git/objects/a8/f1651d6fe490d82e0d01957684b02eef5f303c and ./wordpress-3.4.1/.git/objects/a8/f1651d6fe490d82e0d01957684b02eef5f303c differ Binary files ./wordpress-3.4/.git/objects/a9/de2654b96eff86eacacf05952eb8dd0ebf15b0 and ./wordpress-3.4.1/.git/objects/a9/de2654b96eff86eacacf05952eb8dd0ebf15b0 differ Binary files ./wordpress-3.4/.git/objects/aa/30cde7590c9a1a7dffde73d229d7f8c3bcc22e and ./wordpress-3.4.1/.git/objects/aa/30cde7590c9a1a7dffde73d229d7f8c3bcc22e differ Binary files ./wordpress-3.4/.git/objects/aa/87c6b840bfdbc87406642602c99b65d01892b8 and ./wordpress-3.4.1/.git/objects/aa/87c6b840bfdbc87406642602c99b65d01892b8 differ Binary files ./wordpress-3.4/.git/objects/aa/87fbd5e5e26daee97cee9dcd51ac8e47d64850 and ./wordpress-3.4.1/.git/objects/aa/87fbd5e5e26daee97cee9dcd51ac8e47d64850 differ Binary files ./wordpress-3.4/.git/objects/aa/aec7df1a482bcf67811f1188dbe4ce67ff52ae and ./wordpress-3.4.1/.git/objects/aa/aec7df1a482bcf67811f1188dbe4ce67ff52ae differ Binary files ./wordpress-3.4/.git/objects/aa/c42f06b061746adf493f93c1289f4cdbebb919 and ./wordpress-3.4.1/.git/objects/aa/c42f06b061746adf493f93c1289f4cdbebb919 differ Binary files ./wordpress-3.4/.git/objects/aa/dd0a3d3e94bad72a80eaccaf17a5e5a5b8ab28 and ./wordpress-3.4.1/.git/objects/aa/dd0a3d3e94bad72a80eaccaf17a5e5a5b8ab28 differ Binary files ./wordpress-3.4/.git/objects/aa/f57aa9500bb4e3cf74c2fd34b5fa900e90cb50 and ./wordpress-3.4.1/.git/objects/aa/f57aa9500bb4e3cf74c2fd34b5fa900e90cb50 differ Binary files ./wordpress-3.4/.git/objects/ab/03ed1066b6a500fb5e37fbc053312ded2ece6c and ./wordpress-3.4.1/.git/objects/ab/03ed1066b6a500fb5e37fbc053312ded2ece6c differ Binary files ./wordpress-3.4/.git/objects/ab/16be088faaba1330c4ca0a2bdd855559b4dcf3 and ./wordpress-3.4.1/.git/objects/ab/16be088faaba1330c4ca0a2bdd855559b4dcf3 differ Binary files ./wordpress-3.4/.git/objects/ab/1aa8e123fe263608d06126ce08c560ad419f97 and ./wordpress-3.4.1/.git/objects/ab/1aa8e123fe263608d06126ce08c560ad419f97 differ Binary files ./wordpress-3.4/.git/objects/ab/2204d9ee742668bc1ce1a4f216ba3db2dc5798 and ./wordpress-3.4.1/.git/objects/ab/2204d9ee742668bc1ce1a4f216ba3db2dc5798 differ Binary files ./wordpress-3.4/.git/objects/ab/2737c563e3b3af267719e2a10e60aa8ab22457 and ./wordpress-3.4.1/.git/objects/ab/2737c563e3b3af267719e2a10e60aa8ab22457 differ Binary files ./wordpress-3.4/.git/objects/ab/50f2d887a0843b116ef598e5a005e5601d18d0 and ./wordpress-3.4.1/.git/objects/ab/50f2d887a0843b116ef598e5a005e5601d18d0 differ Binary files ./wordpress-3.4/.git/objects/ab/5192efbf23e643b756906150b0b29574026536 and ./wordpress-3.4.1/.git/objects/ab/5192efbf23e643b756906150b0b29574026536 differ Binary files ./wordpress-3.4/.git/objects/ab/acbd3a1f16891f58fdf4a689b14176397fc7b5 and ./wordpress-3.4.1/.git/objects/ab/acbd3a1f16891f58fdf4a689b14176397fc7b5 differ Binary files ./wordpress-3.4/.git/objects/ab/c5273a842cba9be05bb9ef75c78029b859040d and ./wordpress-3.4.1/.git/objects/ab/c5273a842cba9be05bb9ef75c78029b859040d differ Binary files ./wordpress-3.4/.git/objects/ac/308a99666fa90cecb9e141ad4d6d1774223d86 and ./wordpress-3.4.1/.git/objects/ac/308a99666fa90cecb9e141ad4d6d1774223d86 differ Binary files ./wordpress-3.4/.git/objects/ac/7fb17a969297d240a570291aa75afbef83e1e9 and ./wordpress-3.4.1/.git/objects/ac/7fb17a969297d240a570291aa75afbef83e1e9 differ Binary files ./wordpress-3.4/.git/objects/ac/d88a3397649fe013b2db9c75799019c2a86bb5 and ./wordpress-3.4.1/.git/objects/ac/d88a3397649fe013b2db9c75799019c2a86bb5 differ Binary files ./wordpress-3.4/.git/objects/ac/df4085f3068c4c0a1d6855f4b80dae8bac3068 and ./wordpress-3.4.1/.git/objects/ac/df4085f3068c4c0a1d6855f4b80dae8bac3068 differ Binary files ./wordpress-3.4/.git/objects/ad/07434df4633a744eade865a42ff57c9298044b and ./wordpress-3.4.1/.git/objects/ad/07434df4633a744eade865a42ff57c9298044b differ Binary files ./wordpress-3.4/.git/objects/ad/261f97aecf7407bc4cca2b6aee92401eac3c91 and ./wordpress-3.4.1/.git/objects/ad/261f97aecf7407bc4cca2b6aee92401eac3c91 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/ad/5db1bf8169f99966c968432694f59e8aa0c3c5 ./wordpress-3.4.1/.git/objects/ad/5db1bf8169f99966c968432694f59e8aa0c3c5 *** ./wordpress-3.4/.git/objects/ad/5db1bf8169f99966c968432694f59e8aa0c3c5 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/ad/5db1bf8169f99966c968432694f59e8aa0c3c5 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - xu�aK�0�溺�ni�Tl�"~�ˡ �]�M��^7-mjY{�m��L���m�w2��;I�2������H��'$���n�:�,[cE�(ks���ol�W!;]$��Ep����l��4��JL�<8�H�����z��8f�r櫺���q3�r�v$-J�'䤓�B �sROV�>� �D��<T *D - �+���X�A����P����!P���1�h�� ��8�Zٶ6�-��o|��U��_��O�J(Z��H����5MlU65iSE���#1��r�M��?�D_�_�%ٚ�����>�u�%�嵿�����ݸ#�spd�E �Jٮ��@��du���`f�>FfD~���X�g�O�[Uo��W��ű \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/ad/7628320c3d15756c84794c8c0523f1072da640 and ./wordpress-3.4.1/.git/objects/ad/7628320c3d15756c84794c8c0523f1072da640 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/ad/873babb482538079aa839db4d3a646c0fabeac ./wordpress-3.4.1/.git/objects/ad/873babb482538079aa839db4d3a646c0fabeac *** ./wordpress-3.4/.git/objects/ad/873babb482538079aa839db4d3a646c0fabeac 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/ad/873babb482538079aa839db4d3a646c0fabeac 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - x=��� �=�{�ρ6z25�0���vcI) ,��/����|�3��=���ru�cM]3��5���&\0�eT /IYN�<�|sr���i���BvC����(3 �x�ۤ�<���(l�K(x��x�S@�1�:�qL�@%��YdFD��bߘ�j;����}�6E� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/ad/b8321475528961f8de6e483acd0322453217dc and ./wordpress-3.4.1/.git/objects/ad/b8321475528961f8de6e483acd0322453217dc differ Binary files ./wordpress-3.4/.git/objects/ad/fdddccd7cac62a17d68873fa53c248bff8351a and ./wordpress-3.4.1/.git/objects/ad/fdddccd7cac62a17d68873fa53c248bff8351a differ Binary files ./wordpress-3.4/.git/objects/ae/779c68039037645fd0dc7b0df3f187d7fad9ad and ./wordpress-3.4.1/.git/objects/ae/779c68039037645fd0dc7b0df3f187d7fad9ad differ Binary files ./wordpress-3.4/.git/objects/ae/8a9f136c39f68e1054e4ee8e45f4522ff7d2bc and ./wordpress-3.4.1/.git/objects/ae/8a9f136c39f68e1054e4ee8e45f4522ff7d2bc differ Binary files ./wordpress-3.4/.git/objects/ae/c75804fb74e4f742efa03fc126b6028bff66e2 and ./wordpress-3.4.1/.git/objects/ae/c75804fb74e4f742efa03fc126b6028bff66e2 differ Binary files ./wordpress-3.4/.git/objects/ae/dbc111ea1455871e8b0dc700591c400ba3d4ee and ./wordpress-3.4.1/.git/objects/ae/dbc111ea1455871e8b0dc700591c400ba3d4ee differ Binary files ./wordpress-3.4/.git/objects/af/1960e478d2e05cddd8c8dbfc399257c04ea925 and ./wordpress-3.4.1/.git/objects/af/1960e478d2e05cddd8c8dbfc399257c04ea925 differ Binary files ./wordpress-3.4/.git/objects/af/4e9564f9e55590de3bb9897ba27e89d4496ea1 and ./wordpress-3.4.1/.git/objects/af/4e9564f9e55590de3bb9897ba27e89d4496ea1 differ Binary files ./wordpress-3.4/.git/objects/af/67da9d78600bdf8fc2ad0fb36018af1fc6a209 and ./wordpress-3.4.1/.git/objects/af/67da9d78600bdf8fc2ad0fb36018af1fc6a209 differ Binary files ./wordpress-3.4/.git/objects/af/7e8673ea5b5df2e76c6b4b790e09075a33dc49 and ./wordpress-3.4.1/.git/objects/af/7e8673ea5b5df2e76c6b4b790e09075a33dc49 differ Binary files ./wordpress-3.4/.git/objects/af/81871a74f3e6fd671fe6264a3ca448527a47d7 and ./wordpress-3.4.1/.git/objects/af/81871a74f3e6fd671fe6264a3ca448527a47d7 differ Binary files ./wordpress-3.4/.git/objects/af/866faffaf7045fc7263d386dd68dbea8e6fba9 and ./wordpress-3.4.1/.git/objects/af/866faffaf7045fc7263d386dd68dbea8e6fba9 differ Binary files ./wordpress-3.4/.git/objects/b0/7e0b5fbd04bacba18e6fd018a3b56d35e64f6a and ./wordpress-3.4.1/.git/objects/b0/7e0b5fbd04bacba18e6fd018a3b56d35e64f6a differ Binary files ./wordpress-3.4/.git/objects/b0/883a8cb7309236dc8d403bf87618be8478c17b and ./wordpress-3.4.1/.git/objects/b0/883a8cb7309236dc8d403bf87618be8478c17b differ Binary files ./wordpress-3.4/.git/objects/b0/a4d406fb645fc8d7e6891ffd85d11b3e181030 and ./wordpress-3.4.1/.git/objects/b0/a4d406fb645fc8d7e6891ffd85d11b3e181030 differ Binary files ./wordpress-3.4/.git/objects/b0/b8d0782d2e0b874eae30ff56ed8d6378f0e9a9 and ./wordpress-3.4.1/.git/objects/b0/b8d0782d2e0b874eae30ff56ed8d6378f0e9a9 differ Binary files ./wordpress-3.4/.git/objects/b0/ba72124cbd72ac68ca5236b49107539a2f672f and ./wordpress-3.4.1/.git/objects/b0/ba72124cbd72ac68ca5236b49107539a2f672f differ Binary files ./wordpress-3.4/.git/objects/b0/e120bd519ea1f35b350b79598be2c10b43321a and ./wordpress-3.4.1/.git/objects/b0/e120bd519ea1f35b350b79598be2c10b43321a differ Binary files ./wordpress-3.4/.git/objects/b0/f0011d82213d9179632534b1ac36088d9d1f31 and ./wordpress-3.4.1/.git/objects/b0/f0011d82213d9179632534b1ac36088d9d1f31 differ Binary files ./wordpress-3.4/.git/objects/b0/f72ffe9882d0b029927a99e5f24529046635cb and ./wordpress-3.4.1/.git/objects/b0/f72ffe9882d0b029927a99e5f24529046635cb differ Binary files ./wordpress-3.4/.git/objects/b1/4c79ce2365480c253ae2c37f33fe581a5a071b and ./wordpress-3.4.1/.git/objects/b1/4c79ce2365480c253ae2c37f33fe581a5a071b differ Binary files ./wordpress-3.4/.git/objects/b1/4f5586c4a129cc34fb458623ec0dfe0af327a7 and ./wordpress-3.4.1/.git/objects/b1/4f5586c4a129cc34fb458623ec0dfe0af327a7 differ Binary files ./wordpress-3.4/.git/objects/b1/93af0dec506e1e9ae8920a53c279938e429ec6 and ./wordpress-3.4.1/.git/objects/b1/93af0dec506e1e9ae8920a53c279938e429ec6 differ Binary files ./wordpress-3.4/.git/objects/b1/a377aba7784d3a0a0fabb4d22b8114cde25ace and ./wordpress-3.4.1/.git/objects/b1/a377aba7784d3a0a0fabb4d22b8114cde25ace differ Binary files ./wordpress-3.4/.git/objects/b1/b7d5f866063dec4d6ba759337e6f69402483af and ./wordpress-3.4.1/.git/objects/b1/b7d5f866063dec4d6ba759337e6f69402483af differ Binary files ./wordpress-3.4/.git/objects/b1/bbbc7b55dd11e7b932af649ace43b918ddd3fe and ./wordpress-3.4.1/.git/objects/b1/bbbc7b55dd11e7b932af649ace43b918ddd3fe differ Binary files ./wordpress-3.4/.git/objects/b1/fb07f4b3b167988786e95e7c16663e04806264 and ./wordpress-3.4.1/.git/objects/b1/fb07f4b3b167988786e95e7c16663e04806264 differ Binary files ./wordpress-3.4/.git/objects/b2/0c88f7d6a3d1ccbfab3015af0d6515592bf4d5 and ./wordpress-3.4.1/.git/objects/b2/0c88f7d6a3d1ccbfab3015af0d6515592bf4d5 differ Binary files ./wordpress-3.4/.git/objects/b2/62e00830cf1c2c38677d4a3c61557eb4e78b46 and ./wordpress-3.4.1/.git/objects/b2/62e00830cf1c2c38677d4a3c61557eb4e78b46 differ Binary files ./wordpress-3.4/.git/objects/b2/71867936fb0ea84d987ad8d49ed3151b7d0b2f and ./wordpress-3.4.1/.git/objects/b2/71867936fb0ea84d987ad8d49ed3151b7d0b2f differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/b2/c6177fbc3a286dddca599c47ff0be7d187c162 ./wordpress-3.4.1/.git/objects/b2/c6177fbc3a286dddca599c47ff0be7d187c162 *** ./wordpress-3.4/.git/objects/b2/c6177fbc3a286dddca599c47ff0be7d187c162 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/b2/c6177fbc3a286dddca599c47ff0be7d187c162 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - xe��J1��u�b�nK�[��B���Z[� �ʹ �&1�Z|{'鏨�*39��;e�K��Onn��$E��@�Fp��H9��&u�����p���o�]���{����I�w�Wk�Dx�VL,:��)�qS{���B� - �2��t/�D. �����p���*��ІV�b�Z��o݅�<m"D�a��G�v!z|Y�D�0����K)�Nr*p!f�����M����ˌ��6��$tO��X���^k�2���G#-2M���ȜڧP���g�6������aB��1�����'(�/ky$ �}\Hʋ�1��=�� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/b2/fd2bd3cf03b9a1038ddeddad59be2f0f1f6d02 and ./wordpress-3.4.1/.git/objects/b2/fd2bd3cf03b9a1038ddeddad59be2f0f1f6d02 differ Binary files ./wordpress-3.4/.git/objects/b3/2c540938ea47ded021d0df3d05ec0131fc1564 and ./wordpress-3.4.1/.git/objects/b3/2c540938ea47ded021d0df3d05ec0131fc1564 differ Binary files ./wordpress-3.4/.git/objects/b3/5337786768296b25b89f5c56fa6b5beb49df59 and ./wordpress-3.4.1/.git/objects/b3/5337786768296b25b89f5c56fa6b5beb49df59 differ Binary files ./wordpress-3.4/.git/objects/b3/98a55c014a95f051ec514aa09a48c9107fd009 and ./wordpress-3.4.1/.git/objects/b3/98a55c014a95f051ec514aa09a48c9107fd009 differ Binary files ./wordpress-3.4/.git/objects/b3/ab3d2140a82015b499c5ebfd8816e445efc534 and ./wordpress-3.4.1/.git/objects/b3/ab3d2140a82015b499c5ebfd8816e445efc534 differ Binary files ./wordpress-3.4/.git/objects/b3/cc84e5048e4677f95570fa5fe25cb15825ba72 and ./wordpress-3.4.1/.git/objects/b3/cc84e5048e4677f95570fa5fe25cb15825ba72 differ Binary files ./wordpress-3.4/.git/objects/b4/08ae1fe7caca0ae31facf0624742fa17912d19 and ./wordpress-3.4.1/.git/objects/b4/08ae1fe7caca0ae31facf0624742fa17912d19 differ Binary files ./wordpress-3.4/.git/objects/b4/2f5c3b49b554ec61b5fed8f56bc26f29bcea01 and ./wordpress-3.4.1/.git/objects/b4/2f5c3b49b554ec61b5fed8f56bc26f29bcea01 differ Binary files ./wordpress-3.4/.git/objects/b4/5a1fd2e595defe6f7341991b7c63f66a0e5a82 and ./wordpress-3.4.1/.git/objects/b4/5a1fd2e595defe6f7341991b7c63f66a0e5a82 differ Binary files ./wordpress-3.4/.git/objects/b4/a6c52f13ad3d9780dd2202ae48475bd190df32 and ./wordpress-3.4.1/.git/objects/b4/a6c52f13ad3d9780dd2202ae48475bd190df32 differ Binary files ./wordpress-3.4/.git/objects/b4/aa238ebbe727672967af035b9ac2c4c176e0ce and ./wordpress-3.4.1/.git/objects/b4/aa238ebbe727672967af035b9ac2c4c176e0ce differ Binary files ./wordpress-3.4/.git/objects/b4/c02d3f08be98fc3bf745bc4382bc886c27ce1a and ./wordpress-3.4.1/.git/objects/b4/c02d3f08be98fc3bf745bc4382bc886c27ce1a differ Binary files ./wordpress-3.4/.git/objects/b4/c78f3cd12a5dba591c80c5a900199c56ffdd18 and ./wordpress-3.4.1/.git/objects/b4/c78f3cd12a5dba591c80c5a900199c56ffdd18 differ Binary files ./wordpress-3.4/.git/objects/b5/2f4c281893d0ec1b7b5e88417124aedc0ea45a and ./wordpress-3.4.1/.git/objects/b5/2f4c281893d0ec1b7b5e88417124aedc0ea45a differ Binary files ./wordpress-3.4/.git/objects/b5/4cd0f9469ae025d7b709f03432eebc30a615b8 and ./wordpress-3.4.1/.git/objects/b5/4cd0f9469ae025d7b709f03432eebc30a615b8 differ Binary files ./wordpress-3.4/.git/objects/b5/5ba1c3e8357688eb8337d5975ebf46ca8c5ca7 and ./wordpress-3.4.1/.git/objects/b5/5ba1c3e8357688eb8337d5975ebf46ca8c5ca7 differ Binary files ./wordpress-3.4/.git/objects/b5/e882231ec6c70a60b8d55327b917e8f4883e15 and ./wordpress-3.4.1/.git/objects/b5/e882231ec6c70a60b8d55327b917e8f4883e15 differ Binary files ./wordpress-3.4/.git/objects/b6/7c600572ce284700e365e00a132e38110af02e and ./wordpress-3.4.1/.git/objects/b6/7c600572ce284700e365e00a132e38110af02e differ Binary files ./wordpress-3.4/.git/objects/b6/9513caf437e5b74baf65b3d3e94aa1704420fe and ./wordpress-3.4.1/.git/objects/b6/9513caf437e5b74baf65b3d3e94aa1704420fe differ Binary files ./wordpress-3.4/.git/objects/b6/c5b695c5a11f24f58d4afecb8f843dac48f05b and ./wordpress-3.4.1/.git/objects/b6/c5b695c5a11f24f58d4afecb8f843dac48f05b differ Binary files ./wordpress-3.4/.git/objects/b6/c84df92b1337b55c96707cbc36341989c325b6 and ./wordpress-3.4.1/.git/objects/b6/c84df92b1337b55c96707cbc36341989c325b6 differ Binary files ./wordpress-3.4/.git/objects/b7/0bf7c67c3ec64bdae12fd5a294898dd31a9f31 and ./wordpress-3.4.1/.git/objects/b7/0bf7c67c3ec64bdae12fd5a294898dd31a9f31 differ Binary files ./wordpress-3.4/.git/objects/b7/0e35df92c92cbaf9ddcf725fe0f6c8986159dd and ./wordpress-3.4.1/.git/objects/b7/0e35df92c92cbaf9ddcf725fe0f6c8986159dd differ Binary files ./wordpress-3.4/.git/objects/b7/2d5afc27eee271ebf4304a44c079a4a4672226 and ./wordpress-3.4.1/.git/objects/b7/2d5afc27eee271ebf4304a44c079a4a4672226 differ Binary files ./wordpress-3.4/.git/objects/b7/460289d77a03df78f2e8ab01ac8d89cba6a3d1 and ./wordpress-3.4.1/.git/objects/b7/460289d77a03df78f2e8ab01ac8d89cba6a3d1 differ Binary files ./wordpress-3.4/.git/objects/b7/758d225d7d61da226a43c0a9732aae08d9da98 and ./wordpress-3.4.1/.git/objects/b7/758d225d7d61da226a43c0a9732aae08d9da98 differ Binary files ./wordpress-3.4/.git/objects/b7/959c501fb686b29f262145c45f203b1ec28677 and ./wordpress-3.4.1/.git/objects/b7/959c501fb686b29f262145c45f203b1ec28677 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/b8/231847ee9d474b8ffe40326c940de204912e77 ./wordpress-3.4.1/.git/objects/b8/231847ee9d474b8ffe40326c940de204912e77 *** ./wordpress-3.4/.git/objects/b8/231847ee9d474b8ffe40326c940de204912e77 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/b8/231847ee9d474b8ffe40326c940de204912e77 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,3 **** - xmRMo�0ݹ�Bˡ�Yv�a�ܺ�����R�0� K��̖<}����JN�lؠ�(�||T�� - �y{�"��D���=�Q�V����`���Y��N_�'S�:7�"��Z_Q��l�+f��ˀ�+�y�@� ���,u�)[��K`7zXٴ%�}л����/_���.ѝ�,�a� �;4�N��+�V #ްj�π6�Qȵ����1oV� ^�$F1���b�Tc����-����8="�v��i!�P*�s;��Q - ����#�[Ҕ�X� Ϯ�\!�1kˉ��^����*��3L�0���}��J�u�q�`?ֻg=`�C`d��71�e��A[�)&����&��Zɞ� *���ED0"�R5�y!x�R�^A(��u�?OO�v��['�{��0ӌs��p*`�?��g���oŗO�9� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/b8/3ec1e67f8edc4d9dc20cfd44310a9e6ab2cd06 and ./wordpress-3.4.1/.git/objects/b8/3ec1e67f8edc4d9dc20cfd44310a9e6ab2cd06 differ Binary files ./wordpress-3.4/.git/objects/b8/88fc3e17e0b80610f9c425fa5cd8c3c93193c6 and ./wordpress-3.4.1/.git/objects/b8/88fc3e17e0b80610f9c425fa5cd8c3c93193c6 differ Binary files ./wordpress-3.4/.git/objects/b8/e0975bc779081489f7dd6dff834419525ca87e and ./wordpress-3.4.1/.git/objects/b8/e0975bc779081489f7dd6dff834419525ca87e differ Binary files ./wordpress-3.4/.git/objects/b8/ffe922b1340ca1387956e561b7acd4e614a001 and ./wordpress-3.4.1/.git/objects/b8/ffe922b1340ca1387956e561b7acd4e614a001 differ Binary files ./wordpress-3.4/.git/objects/b9/600f22e7c1b361c76b510a2cb808020c991643 and ./wordpress-3.4.1/.git/objects/b9/600f22e7c1b361c76b510a2cb808020c991643 differ Binary files ./wordpress-3.4/.git/objects/b9/dacce23817c23fb870c9add406021daa9ecb1a and ./wordpress-3.4.1/.git/objects/b9/dacce23817c23fb870c9add406021daa9ecb1a differ Binary files ./wordpress-3.4/.git/objects/b9/f13face0d4120acf5ef663840b1d8b3ce46272 and ./wordpress-3.4.1/.git/objects/b9/f13face0d4120acf5ef663840b1d8b3ce46272 differ Binary files ./wordpress-3.4/.git/objects/b9/f17360456f381d977128ca10fa718ed0a656e0 and ./wordpress-3.4.1/.git/objects/b9/f17360456f381d977128ca10fa718ed0a656e0 differ Binary files ./wordpress-3.4/.git/objects/ba/4ddb2eb339dd669828611e843f75eef424f077 and ./wordpress-3.4.1/.git/objects/ba/4ddb2eb339dd669828611e843f75eef424f077 differ Binary files ./wordpress-3.4/.git/objects/ba/56a4a483e9eab02dc2a274fe267747d7ceafc3 and ./wordpress-3.4.1/.git/objects/ba/56a4a483e9eab02dc2a274fe267747d7ceafc3 differ Binary files ./wordpress-3.4/.git/objects/ba/98f497cb9696bccc65635639591d0f4f211ee4 and ./wordpress-3.4.1/.git/objects/ba/98f497cb9696bccc65635639591d0f4f211ee4 differ Binary files ./wordpress-3.4/.git/objects/bb/0ba653563b50784ec57785e189246a75e51e8b and ./wordpress-3.4.1/.git/objects/bb/0ba653563b50784ec57785e189246a75e51e8b differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/bb/3aacd59b6f876f7213a466c94a32d6e1049020 ./wordpress-3.4.1/.git/objects/bb/3aacd59b6f876f7213a466c94a32d6e1049020 *** ./wordpress-3.4/.git/objects/bb/3aacd59b6f876f7213a466c94a32d6e1049020 2012-06-13 16:59:59.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/bb/3aacd59b6f876f7213a466c94a32d6e1049020 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - x+)JMU060c040031QHL�/-�+�(`Xz�d�|Q}?u�3�������u� LQJnfX�j�L[V¬if9o�7�b86�����Ԕ̒b��_�Z.��5 ����:5��b��4�R�s!�lY��qs���~2����d�C�e楤V� �ǣ~�oP�Z@v��p�K)s����rS�J�j��g_�x���O.������)(�O��I+����Ӳ����W���w;�����8�H��B�J��r�~,$!��G*�O���~� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/bb/5a95e6a741ff71d40e57e3341ad9d47d1d6831 and ./wordpress-3.4.1/.git/objects/bb/5a95e6a741ff71d40e57e3341ad9d47d1d6831 differ Binary files ./wordpress-3.4/.git/objects/bb/61249cfb3d2470572911b68d920abd77dcad2e and ./wordpress-3.4.1/.git/objects/bb/61249cfb3d2470572911b68d920abd77dcad2e differ Binary files ./wordpress-3.4/.git/objects/bb/69d9a0778058e7a5c6f872846659189e998f25 and ./wordpress-3.4.1/.git/objects/bb/69d9a0778058e7a5c6f872846659189e998f25 differ Binary files ./wordpress-3.4/.git/objects/bb/a0871d6353dc62f105c757978d224f8c224c03 and ./wordpress-3.4.1/.git/objects/bb/a0871d6353dc62f105c757978d224f8c224c03 differ Binary files ./wordpress-3.4/.git/objects/bb/b1c50ed0a66a3291088beb722f652fa39f6285 and ./wordpress-3.4.1/.git/objects/bb/b1c50ed0a66a3291088beb722f652fa39f6285 differ Binary files ./wordpress-3.4/.git/objects/bc/0c3f8b9e9ab5f1a51dd22e92dfd38e49c721dc and ./wordpress-3.4.1/.git/objects/bc/0c3f8b9e9ab5f1a51dd22e92dfd38e49c721dc differ Binary files ./wordpress-3.4/.git/objects/bc/4e6269aa6e049fd932db5ec3295adcd17a3fd4 and ./wordpress-3.4.1/.git/objects/bc/4e6269aa6e049fd932db5ec3295adcd17a3fd4 differ Binary files ./wordpress-3.4/.git/objects/bc/5037c723df936a570be9b0929bcf1e9f328e46 and ./wordpress-3.4.1/.git/objects/bc/5037c723df936a570be9b0929bcf1e9f328e46 differ Binary files ./wordpress-3.4/.git/objects/bc/595282b4fa6993b4c731061d897419a2be2c9c and ./wordpress-3.4.1/.git/objects/bc/595282b4fa6993b4c731061d897419a2be2c9c differ Binary files ./wordpress-3.4/.git/objects/bc/e8e73995d05c6bdd18f476a595be3e633b9782 and ./wordpress-3.4.1/.git/objects/bc/e8e73995d05c6bdd18f476a595be3e633b9782 differ Binary files ./wordpress-3.4/.git/objects/bd/4885525015a85ce259dd1215de50a3527b4270 and ./wordpress-3.4.1/.git/objects/bd/4885525015a85ce259dd1215de50a3527b4270 differ Binary files ./wordpress-3.4/.git/objects/bd/acc21ce364d2f0efb0ca664d6fcc16956368fc and ./wordpress-3.4.1/.git/objects/bd/acc21ce364d2f0efb0ca664d6fcc16956368fc differ Binary files ./wordpress-3.4/.git/objects/bd/fa53ab06cde95349f1c20d1b5abb8576ca6235 and ./wordpress-3.4.1/.git/objects/bd/fa53ab06cde95349f1c20d1b5abb8576ca6235 differ Binary files ./wordpress-3.4/.git/objects/bd/fde17ad14125829fdd95b81c75179177578f8c and ./wordpress-3.4.1/.git/objects/bd/fde17ad14125829fdd95b81c75179177578f8c differ Binary files ./wordpress-3.4/.git/objects/be/41c6c83f4220022ec1782d370d289b53ab80cc and ./wordpress-3.4.1/.git/objects/be/41c6c83f4220022ec1782d370d289b53ab80cc differ Binary files ./wordpress-3.4/.git/objects/be/da3e4369ac07423c2afb1b678cc42a057066fb and ./wordpress-3.4.1/.git/objects/be/da3e4369ac07423c2afb1b678cc42a057066fb differ Binary files ./wordpress-3.4/.git/objects/bf/0a03ee41fc078b2cb6453dee7876806d4a8871 and ./wordpress-3.4.1/.git/objects/bf/0a03ee41fc078b2cb6453dee7876806d4a8871 differ Binary files ./wordpress-3.4/.git/objects/bf/45c2feebbc70585600867f34ab11332e9bada7 and ./wordpress-3.4.1/.git/objects/bf/45c2feebbc70585600867f34ab11332e9bada7 differ Binary files ./wordpress-3.4/.git/objects/bf/744bd9b4a58a0d210d3fd3ac9a2e78733f0480 and ./wordpress-3.4.1/.git/objects/bf/744bd9b4a58a0d210d3fd3ac9a2e78733f0480 differ Binary files ./wordpress-3.4/.git/objects/bf/9d3d92d6b872ccf327d7f675c4cba041275842 and ./wordpress-3.4.1/.git/objects/bf/9d3d92d6b872ccf327d7f675c4cba041275842 differ Binary files ./wordpress-3.4/.git/objects/bf/9ef276636b3ec49fc79560900efa48ee275884 and ./wordpress-3.4.1/.git/objects/bf/9ef276636b3ec49fc79560900efa48ee275884 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/bf/f13e263de9e6eecccdc1dc9583fcacfda04591 ./wordpress-3.4.1/.git/objects/bf/f13e263de9e6eecccdc1dc9583fcacfda04591 *** ./wordpress-3.4/.git/objects/bf/f13e263de9e6eecccdc1dc9583fcacfda04591 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/bf/f13e263de9e6eecccdc1dc9583fcacfda04591 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - xM��j�0D{�W�ͭ�6Mҋȡ�����|�Q�m-�Wf%S���!�\gvv��F�nx:��aVU�+��v _z�6����`���y������I���g~R�W� $�X�".R����t�-����&�NBD�Q�![��'�RʱK�N8�=������=^P"����Y���x˴0;���N� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/c0/156d2ce9f7a485c8ea3745794071b45678bd9b and ./wordpress-3.4.1/.git/objects/c0/156d2ce9f7a485c8ea3745794071b45678bd9b differ Binary files ./wordpress-3.4/.git/objects/c0/bdd2c166c598ff865e6102c14904d91571d4bf and ./wordpress-3.4.1/.git/objects/c0/bdd2c166c598ff865e6102c14904d91571d4bf differ Binary files ./wordpress-3.4/.git/objects/c0/dcc6cac2003f7405fff3ea5df7bcf276243596 and ./wordpress-3.4.1/.git/objects/c0/dcc6cac2003f7405fff3ea5df7bcf276243596 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/c1/00e68865ca4136bdbd9a3e31a0b75b6187458a ./wordpress-3.4.1/.git/objects/c1/00e68865ca4136bdbd9a3e31a0b75b6187458a *** ./wordpress-3.4/.git/objects/c1/00e68865ca4136bdbd9a3e31a0b75b6187458a 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/c1/00e68865ca4136bdbd9a3e31a0b75b6187458a 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - xU�KO�0���_1����P��3H\G�i�eU�klG��ءq���7����v���A�]���=QD��gG����Ӊ=�mf�֓�e� - ����!qz����M�^g�9q���a�[}[�^U0^�Nx��{��~���#)6 6�_��r��R�G�p2��۴h�9���Ę"�̈́4� 1�d����I��$�_��¾��f \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/c1/0d6285867a89d692b1f598b82d8715ac6b0f53 and ./wordpress-3.4.1/.git/objects/c1/0d6285867a89d692b1f598b82d8715ac6b0f53 differ Binary files ./wordpress-3.4/.git/objects/c1/a1d9f67de5b3c8928874c4b139601a0d8927b8 and ./wordpress-3.4.1/.git/objects/c1/a1d9f67de5b3c8928874c4b139601a0d8927b8 differ Binary files ./wordpress-3.4/.git/objects/c1/ce0510e7d43e107ccb630a9a7499f23cb56273 and ./wordpress-3.4.1/.git/objects/c1/ce0510e7d43e107ccb630a9a7499f23cb56273 differ Binary files ./wordpress-3.4/.git/objects/c2/2c68aaf32a28e7e3735b9f2ed82676af5587a1 and ./wordpress-3.4.1/.git/objects/c2/2c68aaf32a28e7e3735b9f2ed82676af5587a1 differ Binary files ./wordpress-3.4/.git/objects/c2/41158d322937e57b0fff79438c4020b9bee132 and ./wordpress-3.4.1/.git/objects/c2/41158d322937e57b0fff79438c4020b9bee132 differ Binary files ./wordpress-3.4/.git/objects/c2/6eb637dc88ca64b19677aacf8ee90a7f9dc42a and ./wordpress-3.4.1/.git/objects/c2/6eb637dc88ca64b19677aacf8ee90a7f9dc42a differ Binary files ./wordpress-3.4/.git/objects/c2/761cbb85e2d2b9b1cd4800f78232de3c5ce267 and ./wordpress-3.4.1/.git/objects/c2/761cbb85e2d2b9b1cd4800f78232de3c5ce267 differ Binary files ./wordpress-3.4/.git/objects/c2/81155e3073bd538d050a2aac05fddb0b6a9556 and ./wordpress-3.4.1/.git/objects/c2/81155e3073bd538d050a2aac05fddb0b6a9556 differ Binary files ./wordpress-3.4/.git/objects/c2/813868909d6b27d759a10ff4ccdb6afd1fcaa0 and ./wordpress-3.4.1/.git/objects/c2/813868909d6b27d759a10ff4ccdb6afd1fcaa0 differ Binary files ./wordpress-3.4/.git/objects/c2/a2ad454db194e428a7b9da40f62d5376a17428 and ./wordpress-3.4.1/.git/objects/c2/a2ad454db194e428a7b9da40f62d5376a17428 differ Binary files ./wordpress-3.4/.git/objects/c3/12a72562c7452f45439fe5f53227a2c55ea9ce and ./wordpress-3.4.1/.git/objects/c3/12a72562c7452f45439fe5f53227a2c55ea9ce differ Binary files ./wordpress-3.4/.git/objects/c3/97b116c2c200bcb0960d485851bc8543288e41 and ./wordpress-3.4.1/.git/objects/c3/97b116c2c200bcb0960d485851bc8543288e41 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/c3/bc7aaf4067db53aed7baab2037f5bc612d9f47 ./wordpress-3.4.1/.git/objects/c3/bc7aaf4067db53aed7baab2037f5bc612d9f47 *** ./wordpress-3.4/.git/objects/c3/bc7aaf4067db53aed7baab2037f5bc612d9f47 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/c3/bc7aaf4067db53aed7baab2037f5bc612d9f47 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - xM��j1DS�+�>��v��0��)��n��b� - ��#M�yo`&�p>��\�K*n�_�����7�p���H�\M94c�ZW�Q��t�~�)J+G�V��(�F�T�(?8ӟK�]�ǎ8Cɯ����Y�pׅt��x��k5|f�~�_��p�btn1[� �aI7 \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/c3/ccb607c022c6c1a22251b6db70e27c467323dc and ./wordpress-3.4.1/.git/objects/c3/ccb607c022c6c1a22251b6db70e27c467323dc differ Binary files ./wordpress-3.4/.git/objects/c4/4eed79d1a98f2fe65c5b1dd9deb86827624089 and ./wordpress-3.4.1/.git/objects/c4/4eed79d1a98f2fe65c5b1dd9deb86827624089 differ Binary files ./wordpress-3.4/.git/objects/c4/998429d0471239ffc521a63514c56e3fd403b2 and ./wordpress-3.4.1/.git/objects/c4/998429d0471239ffc521a63514c56e3fd403b2 differ Binary files ./wordpress-3.4/.git/objects/c4/cff0e29bc5a7dcd62d6b17e91a0e24c5af5025 and ./wordpress-3.4.1/.git/objects/c4/cff0e29bc5a7dcd62d6b17e91a0e24c5af5025 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/c5/021f169e040c288d3ce9a7dfc9889dedce469a ./wordpress-3.4.1/.git/objects/c5/021f169e040c288d3ce9a7dfc9889dedce469a *** ./wordpress-3.4/.git/objects/c5/021f169e040c288d3ce9a7dfc9889dedce469a 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/c5/021f169e040c288d3ce9a7dfc9889dedce469a 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,3 **** - xUP�j�@����[l�M� - �!-��E[z�쨃��v6��;�*s��~�j|���`�ǐ�Y�@_4�=5+�C�b˦%�`W3�S� ���'s@��l5c��6v���H�k��l>�A�@�z��KGr5�D���^��0T�7���=9��]��o�MQ��{�����f� l���m - K-��KX���c��c�����c��?��?�T� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/c6/113ab5b8f8c1335256517adc446c0bd72f9b6a and ./wordpress-3.4.1/.git/objects/c6/113ab5b8f8c1335256517adc446c0bd72f9b6a differ Binary files ./wordpress-3.4/.git/objects/c6/330b620b678e8b54507f6968a6360685c98397 and ./wordpress-3.4.1/.git/objects/c6/330b620b678e8b54507f6968a6360685c98397 differ Binary files ./wordpress-3.4/.git/objects/c6/398e6775b2e9cfd8a9561f77a7d5f9316ed131 and ./wordpress-3.4.1/.git/objects/c6/398e6775b2e9cfd8a9561f77a7d5f9316ed131 differ Binary files ./wordpress-3.4/.git/objects/c6/473b324ee1dae1faaacc0826639833f551116c and ./wordpress-3.4.1/.git/objects/c6/473b324ee1dae1faaacc0826639833f551116c differ Binary files ./wordpress-3.4/.git/objects/c6/b2e808faa050894e0d011ec266faaddedea7d1 and ./wordpress-3.4.1/.git/objects/c6/b2e808faa050894e0d011ec266faaddedea7d1 differ Binary files ./wordpress-3.4/.git/objects/c6/f2f24750d74ad578c58ca373dc7318f3e99e37 and ./wordpress-3.4.1/.git/objects/c6/f2f24750d74ad578c58ca373dc7318f3e99e37 differ Binary files ./wordpress-3.4/.git/objects/c7/0ef66bbb732d4797c32ac0a697b1d5332cd010 and ./wordpress-3.4.1/.git/objects/c7/0ef66bbb732d4797c32ac0a697b1d5332cd010 differ Binary files ./wordpress-3.4/.git/objects/c7/22150d3408f7fedd71b47e764b46a1d3aa47a8 and ./wordpress-3.4.1/.git/objects/c7/22150d3408f7fedd71b47e764b46a1d3aa47a8 differ Binary files ./wordpress-3.4/.git/objects/c7/9dada3004d2f994e06a44802119b2cbebcda8d and ./wordpress-3.4.1/.git/objects/c7/9dada3004d2f994e06a44802119b2cbebcda8d differ Binary files ./wordpress-3.4/.git/objects/c7/c516a0ce1e8e6b62516702a624d9348dfc984f and ./wordpress-3.4.1/.git/objects/c7/c516a0ce1e8e6b62516702a624d9348dfc984f differ Binary files ./wordpress-3.4/.git/objects/c8/92705ee48750b80d57285edf244877d5175ac7 and ./wordpress-3.4.1/.git/objects/c8/92705ee48750b80d57285edf244877d5175ac7 differ Binary files ./wordpress-3.4/.git/objects/c8/94b2e83522ae29d32e0ed57007d1285c715a7f and ./wordpress-3.4.1/.git/objects/c8/94b2e83522ae29d32e0ed57007d1285c715a7f differ Binary files ./wordpress-3.4/.git/objects/c8/b06f33f818810363ed256f71dfb8d6009ca763 and ./wordpress-3.4.1/.git/objects/c8/b06f33f818810363ed256f71dfb8d6009ca763 differ Binary files ./wordpress-3.4/.git/objects/c8/f1a4d7d557d9710ce0637c41b24bf2fd62cf3b and ./wordpress-3.4.1/.git/objects/c8/f1a4d7d557d9710ce0637c41b24bf2fd62cf3b differ Binary files ./wordpress-3.4/.git/objects/c8/f5da9b829fc3c61b91d1c947e38ea316f3f53c and ./wordpress-3.4.1/.git/objects/c8/f5da9b829fc3c61b91d1c947e38ea316f3f53c differ Binary files ./wordpress-3.4/.git/objects/c8/f9dfc776403e2aa539fe8d7d834be9a0edf107 and ./wordpress-3.4.1/.git/objects/c8/f9dfc776403e2aa539fe8d7d834be9a0edf107 differ Binary files ./wordpress-3.4/.git/objects/c9/47f4484d47b86e4348adf845a4a3b2e8bc892c and ./wordpress-3.4.1/.git/objects/c9/47f4484d47b86e4348adf845a4a3b2e8bc892c differ Binary files ./wordpress-3.4/.git/objects/c9/6b94472c8c74f31d44c5d22533435eedaaf6bb and ./wordpress-3.4.1/.git/objects/c9/6b94472c8c74f31d44c5d22533435eedaaf6bb differ Binary files ./wordpress-3.4/.git/objects/c9/7d38e8f96f70c60ce2e10b16de344e4dc6034f and ./wordpress-3.4.1/.git/objects/c9/7d38e8f96f70c60ce2e10b16de344e4dc6034f differ Binary files ./wordpress-3.4/.git/objects/c9/8b28cc30d29869e6511bd3d1629c7192746068 and ./wordpress-3.4.1/.git/objects/c9/8b28cc30d29869e6511bd3d1629c7192746068 differ Binary files ./wordpress-3.4/.git/objects/c9/9dff2206abeea0959179c0d13a1dec7912ed21 and ./wordpress-3.4.1/.git/objects/c9/9dff2206abeea0959179c0d13a1dec7912ed21 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/c9/b7597c8849fbc6718b0c1ce75c5f7b1ba94dcf ./wordpress-3.4.1/.git/objects/c9/b7597c8849fbc6718b0c1ce75c5f7b1ba94dcf *** ./wordpress-3.4/.git/objects/c9/b7597c8849fbc6718b0c1ce75c5f7b1ba94dcf 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/c9/b7597c8849fbc6718b0c1ce75c5f7b1ba94dcf 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - xe��J�0E}�aɰ5(�?vYD|�@�1kc�i�G����ӭ�*����sG�F�OW�oC�M�� }P�����6�K$g7��=�c �д�MX�]��2�~����خ��͉`e��L;���>��\�a�d(�azzB�m�l�+�5�:06垳D'ɡ% - ��.~0�#דd�l\쌍R9J��D+�� �1�NF�hE`Dq xj:|I)�f. �=i,{l6˜*p��V0�-՞���-+�8��=�,{��zό�S"fI�T¡�H��=�Hg� "7�� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/c9/d8fdd0bb2734fbb717405a43fbab9c5a89ad46 and ./wordpress-3.4.1/.git/objects/c9/d8fdd0bb2734fbb717405a43fbab9c5a89ad46 differ Binary files ./wordpress-3.4/.git/objects/ca/452026a449b39d37d76049bb37cbe5e2fc3206 and ./wordpress-3.4.1/.git/objects/ca/452026a449b39d37d76049bb37cbe5e2fc3206 differ Binary files ./wordpress-3.4/.git/objects/ca/54fd388b03f1f96b6a9031e0e265033045a229 and ./wordpress-3.4.1/.git/objects/ca/54fd388b03f1f96b6a9031e0e265033045a229 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/ca/63fdad4248ac934ec63d2f3eba29399ce13b62 ./wordpress-3.4.1/.git/objects/ca/63fdad4248ac934ec63d2f3eba29399ce13b62 *** ./wordpress-3.4/.git/objects/ca/63fdad4248ac934ec63d2f3eba29399ce13b62 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/ca/63fdad4248ac934ec63d2f3eba29399ce13b62 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,3 **** - x��= - 1Fm�)\�4�� ��#$�Q#�Y6EŻ�]-R�������i5����C�l�9����D��;rh��Ǡ<�˪yQ.#(u6�R���,���5�H�pE��jA�y�a,� - �9�����dۏ���i�L���>�p+z/�tZ� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/ca/d83ff0c75a1b1042626fdc0510d68e7ec2b4a1 and ./wordpress-3.4.1/.git/objects/ca/d83ff0c75a1b1042626fdc0510d68e7ec2b4a1 differ Binary files ./wordpress-3.4/.git/objects/cb/21424319829487d477e5f17262891c1be03e8c and ./wordpress-3.4.1/.git/objects/cb/21424319829487d477e5f17262891c1be03e8c differ Binary files ./wordpress-3.4/.git/objects/cb/2a5597c8cde15867682100cfbf507a2016bc6d and ./wordpress-3.4.1/.git/objects/cb/2a5597c8cde15867682100cfbf507a2016bc6d differ Binary files ./wordpress-3.4/.git/objects/cb/4e6e20a6818d7e153b1709a64ec34d85050460 and ./wordpress-3.4.1/.git/objects/cb/4e6e20a6818d7e153b1709a64ec34d85050460 differ Binary files ./wordpress-3.4/.git/objects/cb/7aa8043d1e1f97e2bcfd5455d57221ec0f43e8 and ./wordpress-3.4.1/.git/objects/cb/7aa8043d1e1f97e2bcfd5455d57221ec0f43e8 differ Binary files ./wordpress-3.4/.git/objects/cb/950184f8426d51101e6e21db3f23c3800110db and ./wordpress-3.4.1/.git/objects/cb/950184f8426d51101e6e21db3f23c3800110db differ Binary files ./wordpress-3.4/.git/objects/cb/b4172bacbbcc3f5067cef36cf09dd47ebfc4d5 and ./wordpress-3.4.1/.git/objects/cb/b4172bacbbcc3f5067cef36cf09dd47ebfc4d5 differ Binary files ./wordpress-3.4/.git/objects/cb/c29007c92607bc44a41af0ba1f4994d4993e9f and ./wordpress-3.4.1/.git/objects/cb/c29007c92607bc44a41af0ba1f4994d4993e9f differ Binary files ./wordpress-3.4/.git/objects/cb/cb49b5dec22636a0f9a0f729ee2de3e388177d and ./wordpress-3.4.1/.git/objects/cb/cb49b5dec22636a0f9a0f729ee2de3e388177d differ Binary files ./wordpress-3.4/.git/objects/cc/341b140ca0d0311fb9f75b50da05048a209dc0 and ./wordpress-3.4.1/.git/objects/cc/341b140ca0d0311fb9f75b50da05048a209dc0 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/cc/58eb4a307437a0e994b677c5620360ddbf8ede ./wordpress-3.4.1/.git/objects/cc/58eb4a307437a0e994b677c5620360ddbf8ede *** ./wordpress-3.4/.git/objects/cc/58eb4a307437a0e994b677c5620360ddbf8ede 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/cc/58eb4a307437a0e994b677c5620360ddbf8ede 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - x�SM��0��%<ɎZ���sU�_�i �]�NKU���v���'�I�������ѸG����?:�'�\����Zx�����6Q;�j8��Azp�XB+M�)H�>���/�:O 38/��1��ϻ�bDjddkAw�8���� - C]ŭ�sib��˲�$��| uc�v ��{�rGZ�J�"��W����cza fS�7��j�1��*�Yj+��=gZ�:}���0h7q�&��#|�C壞ĸ��q��h�?���<-�Q��sz,�MR�L����1f��� M�}����@g�Mp�{šx���V[T^.!l�{���w�8Joi� ��w\^�8���f���Wq������J�[g�ӝogOY8���p��$��<�.q����"��"h��12��˪�5�4���5F7�CW������S�t���)� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/cc/a2bf1e2189c6362b74ca0cd3538d7d8eb45c4d and ./wordpress-3.4.1/.git/objects/cc/a2bf1e2189c6362b74ca0cd3538d7d8eb45c4d differ Binary files ./wordpress-3.4/.git/objects/cc/cde57d09549c7c82da193f3a28ba9dec53b771 and ./wordpress-3.4.1/.git/objects/cc/cde57d09549c7c82da193f3a28ba9dec53b771 differ Binary files ./wordpress-3.4/.git/objects/cd/09ef30213ca448254c6745c780f3c92f59922e and ./wordpress-3.4.1/.git/objects/cd/09ef30213ca448254c6745c780f3c92f59922e differ Binary files ./wordpress-3.4/.git/objects/cd/8e957b387be2692cbb68ea182b4b468788f362 and ./wordpress-3.4.1/.git/objects/cd/8e957b387be2692cbb68ea182b4b468788f362 differ Binary files ./wordpress-3.4/.git/objects/cd/94ee3b25986d92f50ac81ac1e8ab5281807ce5 and ./wordpress-3.4.1/.git/objects/cd/94ee3b25986d92f50ac81ac1e8ab5281807ce5 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/cd/abd2fd4156d46b6db0f724bce9e1281dc3d17f ./wordpress-3.4.1/.git/objects/cd/abd2fd4156d46b6db0f724bce9e1281dc3d17f *** ./wordpress-3.4/.git/objects/cd/abd2fd4156d46b6db0f724bce9e1281dc3d17f 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/cd/abd2fd4156d46b6db0f724bce9e1281dc3d17f 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,4 **** - x-�� - �0@Qׁ��|A⢸-*B���<��;e�*�{S�,�5�ԧ��r - Q{PLo��� �Ip�"k�ZB?�c�˹,q���G - )�Qt�����6��MÔ���W� �U�H1Ó�)ƐG{�e٤ ~��)3� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/ce/277803acbd46677bddca6350d9eff18b1fca3d and ./wordpress-3.4.1/.git/objects/ce/277803acbd46677bddca6350d9eff18b1fca3d differ Binary files ./wordpress-3.4/.git/objects/ce/2ba1e0e8e78dad411178eba0353ea683f4321b and ./wordpress-3.4.1/.git/objects/ce/2ba1e0e8e78dad411178eba0353ea683f4321b differ Binary files ./wordpress-3.4/.git/objects/ce/4be63558b02e9837b995d2b9dd540ce6d61a6f and ./wordpress-3.4.1/.git/objects/ce/4be63558b02e9837b995d2b9dd540ce6d61a6f differ Binary files ./wordpress-3.4/.git/objects/ce/654de44e51b49b0b1f5baaf1e295f76e527f9f and ./wordpress-3.4.1/.git/objects/ce/654de44e51b49b0b1f5baaf1e295f76e527f9f differ Binary files ./wordpress-3.4/.git/objects/ce/88e12cc8467a2464fa225d33afeb506f94b00d and ./wordpress-3.4.1/.git/objects/ce/88e12cc8467a2464fa225d33afeb506f94b00d differ Binary files ./wordpress-3.4/.git/objects/ce/926410970387b46eaaf391a18d44ff122e76cf and ./wordpress-3.4.1/.git/objects/ce/926410970387b46eaaf391a18d44ff122e76cf differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/ce/ad0306c0e38e57bdb0cc85a407b995dcbdc656 ./wordpress-3.4.1/.git/objects/ce/ad0306c0e38e57bdb0cc85a407b995dcbdc656 *** ./wordpress-3.4/.git/objects/ce/ad0306c0e38e57bdb0cc85a407b995dcbdc656 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/ce/ad0306c0e38e57bdb0cc85a407b995dcbdc656 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - xK��OR047bp�t��L�g�g�������+�s�O2������������ x��k�P�����ˠ��``���)�5wG�s��bLs�}����:�}<[������4.�Q���d^KꁲfW��W�����f40,�a�q�J�^�6���M��R�:�`E� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/ce/c4abf98727acd1f6c924e1ecad15e02d54e13a and ./wordpress-3.4.1/.git/objects/ce/c4abf98727acd1f6c924e1ecad15e02d54e13a differ Binary files ./wordpress-3.4/.git/objects/ce/fc38f7ee3cf39577d3130cfacfe3192c627367 and ./wordpress-3.4.1/.git/objects/ce/fc38f7ee3cf39577d3130cfacfe3192c627367 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/ce/fc8cf2ce7a7300e504f2170bb7e338257c8449 ./wordpress-3.4.1/.git/objects/ce/fc8cf2ce7a7300e504f2170bb7e338257c8449 *** ./wordpress-3.4/.git/objects/ce/fc8cf2ce7a7300e504f2170bb7e338257c8449 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/ce/fc8cf2ce7a7300e504f2170bb7e338257c8449 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,5 **** - x�T�n�@�� �*(i���5�C�Ї�(R��Z��b�dw�U���eg�6JէJ���e��9g�z����ޝ��y���ۀ]?$ǀ�r��<�Fv�[��������wx|���/`�ZNBjg�ϩ� 3a-< - �ҹ3jT8L`����)fp�j��N��i�j<�9���@�ta:*�Y��e�sQ�T�'�R'�J=_5I\.�~2σ=&�^��pa�,\�o�E��o�`Тy��it���u.S������w�"�5��e1��I��Z9c���Il�K|�3bC�#�@� :1C���]��YD�"G1�o�@����[�~�|A�&ML��`��M�Q��={8=�^��[�م��75Up��� ��䫢��� !�+i�F0.r����cّ�׆rP�� - B'5�xd4��\�����ҡ�U���.�'eA��Gm�pA���g�@�b���g?�'/�J8A�~���X2�*k(��pr - �� - �����Т��$��(LhdYϢXS�S���,�~# ��,z���t�j֨{� �����x�π�Er�0nK=9ĥ�TR����ǂ-&2���Y��9J5V�/���zWq0yC��r�'�6�!㛲]���*���E� }�r�E�|Z���5�VB��k[��ܢ>�u]�����62��`���� ���e�r;��Z-~,�/�?����݊�q&�- e��]�e�t�pj9;m��.: \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/cf/9db1c305304115ea228cc9a219bd9ca920c44f and ./wordpress-3.4.1/.git/objects/cf/9db1c305304115ea228cc9a219bd9ca920c44f differ Binary files ./wordpress-3.4/.git/objects/d0/455d7ef6c52ce48df3e355e61143f9207c4eb5 and ./wordpress-3.4.1/.git/objects/d0/455d7ef6c52ce48df3e355e61143f9207c4eb5 differ Binary files ./wordpress-3.4/.git/objects/d0/abf36ed0a45e8dd0106a6abc4372f23c50c3f8 and ./wordpress-3.4.1/.git/objects/d0/abf36ed0a45e8dd0106a6abc4372f23c50c3f8 differ Binary files ./wordpress-3.4/.git/objects/d0/c4b9a0a0a22b029ad78a601c5a3300bfc6d7c8 and ./wordpress-3.4.1/.git/objects/d0/c4b9a0a0a22b029ad78a601c5a3300bfc6d7c8 differ Binary files ./wordpress-3.4/.git/objects/d0/cb23c238bd68061a5b11d4da1ba6f885ca348d and ./wordpress-3.4.1/.git/objects/d0/cb23c238bd68061a5b11d4da1ba6f885ca348d differ Binary files ./wordpress-3.4/.git/objects/d0/cb8e4ccaeeeee7e75a67885966364482cef8f7 and ./wordpress-3.4.1/.git/objects/d0/cb8e4ccaeeeee7e75a67885966364482cef8f7 differ Binary files ./wordpress-3.4/.git/objects/d0/d4336e28c301456d944c50aaa096bc6a292dc3 and ./wordpress-3.4.1/.git/objects/d0/d4336e28c301456d944c50aaa096bc6a292dc3 differ Binary files ./wordpress-3.4/.git/objects/d1/2c8b67d70efeaba97cbeb871f19753de914add and ./wordpress-3.4.1/.git/objects/d1/2c8b67d70efeaba97cbeb871f19753de914add differ Binary files ./wordpress-3.4/.git/objects/d1/482880421dde677d3302940aa875ff22a11b06 and ./wordpress-3.4.1/.git/objects/d1/482880421dde677d3302940aa875ff22a11b06 differ Binary files ./wordpress-3.4/.git/objects/d1/723274740b3c0a10181641cf6bc606279f2769 and ./wordpress-3.4.1/.git/objects/d1/723274740b3c0a10181641cf6bc606279f2769 differ Binary files ./wordpress-3.4/.git/objects/d1/b5561e5050e027c04b35afe577df84bd6ca434 and ./wordpress-3.4.1/.git/objects/d1/b5561e5050e027c04b35afe577df84bd6ca434 differ Binary files ./wordpress-3.4/.git/objects/d2/287e2425b7bfacf9a870c3ee485d8f214e8fa1 and ./wordpress-3.4.1/.git/objects/d2/287e2425b7bfacf9a870c3ee485d8f214e8fa1 differ Binary files ./wordpress-3.4/.git/objects/d2/536b9c7ee88be7d2b0eb26fb931a0b7512a6da and ./wordpress-3.4.1/.git/objects/d2/536b9c7ee88be7d2b0eb26fb931a0b7512a6da differ Binary files ./wordpress-3.4/.git/objects/d2/5ec31f609ce1c1f02cc4de3492b5afc6d67f46 and ./wordpress-3.4.1/.git/objects/d2/5ec31f609ce1c1f02cc4de3492b5afc6d67f46 differ Binary files ./wordpress-3.4/.git/objects/d2/875f3e83fa3d71c4dd82dd8d2d3a3517a67ea6 and ./wordpress-3.4.1/.git/objects/d2/875f3e83fa3d71c4dd82dd8d2d3a3517a67ea6 differ Binary files ./wordpress-3.4/.git/objects/d2/ac78c04bd1f50059ce9c1fa9534dcee2195579 and ./wordpress-3.4.1/.git/objects/d2/ac78c04bd1f50059ce9c1fa9534dcee2195579 differ Binary files ./wordpress-3.4/.git/objects/d2/d6dc2cf30f411a6dd977fdf107fb6aa11b852a and ./wordpress-3.4.1/.git/objects/d2/d6dc2cf30f411a6dd977fdf107fb6aa11b852a differ Binary files ./wordpress-3.4/.git/objects/d2/ee200088f8cc69b965b9520e10c0bd1883a052 and ./wordpress-3.4.1/.git/objects/d2/ee200088f8cc69b965b9520e10c0bd1883a052 differ Binary files ./wordpress-3.4/.git/objects/d2/f93671ca3090b277e16a67b1aa6cfb6ac4915f and ./wordpress-3.4.1/.git/objects/d2/f93671ca3090b277e16a67b1aa6cfb6ac4915f differ Binary files ./wordpress-3.4/.git/objects/d3/1ebb0c966d3c4a1cff8a4ee37263cdee5f96f1 and ./wordpress-3.4.1/.git/objects/d3/1ebb0c966d3c4a1cff8a4ee37263cdee5f96f1 differ Binary files ./wordpress-3.4/.git/objects/d3/33a2b3eabcd33956038bd3eee63d957ad5ba6f and ./wordpress-3.4.1/.git/objects/d3/33a2b3eabcd33956038bd3eee63d957ad5ba6f differ Binary files ./wordpress-3.4/.git/objects/d3/41541ce3f0679444d2bdf6a5d94ca8c1c4ae17 and ./wordpress-3.4.1/.git/objects/d3/41541ce3f0679444d2bdf6a5d94ca8c1c4ae17 differ Binary files ./wordpress-3.4/.git/objects/d3/49d0532e68d69526ebc87d678baea7c219e248 and ./wordpress-3.4.1/.git/objects/d3/49d0532e68d69526ebc87d678baea7c219e248 differ Binary files ./wordpress-3.4/.git/objects/d3/527723c6d8a0ddfa7ca0bfe1ab8fce0055918c and ./wordpress-3.4.1/.git/objects/d3/527723c6d8a0ddfa7ca0bfe1ab8fce0055918c differ Binary files ./wordpress-3.4/.git/objects/d3/6845b63301b2b62fc01c44c96389309d85a9f6 and ./wordpress-3.4.1/.git/objects/d3/6845b63301b2b62fc01c44c96389309d85a9f6 differ Binary files ./wordpress-3.4/.git/objects/d3/816732cc22bbae992fe37b3ebca6546556499d and ./wordpress-3.4.1/.git/objects/d3/816732cc22bbae992fe37b3ebca6546556499d differ Binary files ./wordpress-3.4/.git/objects/d3/83f9d72d2852a932217589a9a91330bf568aab and ./wordpress-3.4.1/.git/objects/d3/83f9d72d2852a932217589a9a91330bf568aab differ Binary files ./wordpress-3.4/.git/objects/d4/2b15408e0f1c556b2316b496f222bd1b55cd47 and ./wordpress-3.4.1/.git/objects/d4/2b15408e0f1c556b2316b496f222bd1b55cd47 differ Binary files ./wordpress-3.4/.git/objects/d4/54c86582fcfb7d3c6ea3e89257ebc0fb4ebcf8 and ./wordpress-3.4.1/.git/objects/d4/54c86582fcfb7d3c6ea3e89257ebc0fb4ebcf8 differ Binary files ./wordpress-3.4/.git/objects/d4/591fc5d92c76828534306a75c1fd46e62d46ed and ./wordpress-3.4.1/.git/objects/d4/591fc5d92c76828534306a75c1fd46e62d46ed differ Binary files ./wordpress-3.4/.git/objects/d4/70772ff6aacf7a2c6767e72c2290a761ef37d0 and ./wordpress-3.4.1/.git/objects/d4/70772ff6aacf7a2c6767e72c2290a761ef37d0 differ Binary files ./wordpress-3.4/.git/objects/d4/8e5a94929da827b6a8a2dc39251cf03b921a80 and ./wordpress-3.4.1/.git/objects/d4/8e5a94929da827b6a8a2dc39251cf03b921a80 differ Binary files ./wordpress-3.4/.git/objects/d4/c40d60e80dc53ebacfb2c2af8138788676ddb3 and ./wordpress-3.4.1/.git/objects/d4/c40d60e80dc53ebacfb2c2af8138788676ddb3 differ Binary files ./wordpress-3.4/.git/objects/d4/e005f4fa996482dc543248852a26b0c0ee0868 and ./wordpress-3.4.1/.git/objects/d4/e005f4fa996482dc543248852a26b0c0ee0868 differ Binary files ./wordpress-3.4/.git/objects/d4/e2309a882107c421e78a9864fd3f9cd24f2270 and ./wordpress-3.4.1/.git/objects/d4/e2309a882107c421e78a9864fd3f9cd24f2270 differ Binary files ./wordpress-3.4/.git/objects/d4/f9c7680a6ec05e17c93d3d66c7ae9db29827af and ./wordpress-3.4.1/.git/objects/d4/f9c7680a6ec05e17c93d3d66c7ae9db29827af differ Binary files ./wordpress-3.4/.git/objects/d5/11905c1647a1e311e8b20d5930a37a9c2531cd and ./wordpress-3.4.1/.git/objects/d5/11905c1647a1e311e8b20d5930a37a9c2531cd differ Binary files ./wordpress-3.4/.git/objects/d5/56e13cdab80ab674fee17dae33b3031c5e9f17 and ./wordpress-3.4.1/.git/objects/d5/56e13cdab80ab674fee17dae33b3031c5e9f17 differ Binary files ./wordpress-3.4/.git/objects/d5/b003cf567593cf9a012cef6761a2854affa61a and ./wordpress-3.4.1/.git/objects/d5/b003cf567593cf9a012cef6761a2854affa61a differ Binary files ./wordpress-3.4/.git/objects/d5/f1ae21ce08b6eaf6b2f90b83e14f7fd9e64752 and ./wordpress-3.4.1/.git/objects/d5/f1ae21ce08b6eaf6b2f90b83e14f7fd9e64752 differ Binary files ./wordpress-3.4/.git/objects/d6/3012daf4b574265ff2de65d28ac662ad8d6cc1 and ./wordpress-3.4.1/.git/objects/d6/3012daf4b574265ff2de65d28ac662ad8d6cc1 differ Binary files ./wordpress-3.4/.git/objects/d6/4c361693f6d677f90307112469377a8adb855a and ./wordpress-3.4.1/.git/objects/d6/4c361693f6d677f90307112469377a8adb855a differ Binary files ./wordpress-3.4/.git/objects/d6/4d8a66ebc7f512f5a44dd30f9ba88b9eb4d81c and ./wordpress-3.4.1/.git/objects/d6/4d8a66ebc7f512f5a44dd30f9ba88b9eb4d81c differ Binary files ./wordpress-3.4/.git/objects/d6/6d123d1a54ec390b253971f0ec26579e1e159b and ./wordpress-3.4.1/.git/objects/d6/6d123d1a54ec390b253971f0ec26579e1e159b differ Binary files ./wordpress-3.4/.git/objects/d6/7577c1e7d6710c23967bc1a89945a9d2df8543 and ./wordpress-3.4.1/.git/objects/d6/7577c1e7d6710c23967bc1a89945a9d2df8543 differ Binary files ./wordpress-3.4/.git/objects/d6/984f6200b25b831c8db33803e76aae008880d4 and ./wordpress-3.4.1/.git/objects/d6/984f6200b25b831c8db33803e76aae008880d4 differ Binary files ./wordpress-3.4/.git/objects/d7/566362a405ab5822722aa3af4d5d3aa6a895cd and ./wordpress-3.4.1/.git/objects/d7/566362a405ab5822722aa3af4d5d3aa6a895cd differ Binary files ./wordpress-3.4/.git/objects/d7/6cda5c6be884a1503aa22e305046607770aa6a and ./wordpress-3.4.1/.git/objects/d7/6cda5c6be884a1503aa22e305046607770aa6a differ Binary files ./wordpress-3.4/.git/objects/d7/7260a832cf13aea908df266ac3528402117803 and ./wordpress-3.4.1/.git/objects/d7/7260a832cf13aea908df266ac3528402117803 differ Binary files ./wordpress-3.4/.git/objects/d7/7cfea8e818833b27a5ff060f8927e728d2b581 and ./wordpress-3.4.1/.git/objects/d7/7cfea8e818833b27a5ff060f8927e728d2b581 differ Binary files ./wordpress-3.4/.git/objects/d7/9ee1d7ecacccb3c5aeee8d285193fdcac68bbd and ./wordpress-3.4.1/.git/objects/d7/9ee1d7ecacccb3c5aeee8d285193fdcac68bbd differ Binary files ./wordpress-3.4/.git/objects/d7/b4bb19100fbf769f24043937478d381e29bc18 and ./wordpress-3.4.1/.git/objects/d7/b4bb19100fbf769f24043937478d381e29bc18 differ Binary files ./wordpress-3.4/.git/objects/d7/dd4e963a0b12aa386355ebdc1c63f06ad0734d and ./wordpress-3.4.1/.git/objects/d7/dd4e963a0b12aa386355ebdc1c63f06ad0734d differ Binary files ./wordpress-3.4/.git/objects/d7/f5f2f4b18f8a141c7a5dd1e09ff106a2f9fa1e and ./wordpress-3.4.1/.git/objects/d7/f5f2f4b18f8a141c7a5dd1e09ff106a2f9fa1e differ Binary files ./wordpress-3.4/.git/objects/d7/fa9713588b437c9ac0cb2f1123a3b3e622b586 and ./wordpress-3.4.1/.git/objects/d7/fa9713588b437c9ac0cb2f1123a3b3e622b586 differ Binary files ./wordpress-3.4/.git/objects/d8/3c4948b550dbcc60f4abe77b8ff81b491cd295 and ./wordpress-3.4.1/.git/objects/d8/3c4948b550dbcc60f4abe77b8ff81b491cd295 differ Binary files ./wordpress-3.4/.git/objects/d8/5b4952ed2db712dd70ab899dbc461396ea369d and ./wordpress-3.4.1/.git/objects/d8/5b4952ed2db712dd70ab899dbc461396ea369d differ Binary files ./wordpress-3.4/.git/objects/d8/677c9183fbbbcb6ac065f3b72d062fcb408fff and ./wordpress-3.4.1/.git/objects/d8/677c9183fbbbcb6ac065f3b72d062fcb408fff differ Binary files ./wordpress-3.4/.git/objects/d8/694978864f13660982114378436732d9a725ab and ./wordpress-3.4.1/.git/objects/d8/694978864f13660982114378436732d9a725ab differ Binary files ./wordpress-3.4/.git/objects/d8/70e3d62e995fe15b50b5d7eeb3ff80a2e693ff and ./wordpress-3.4.1/.git/objects/d8/70e3d62e995fe15b50b5d7eeb3ff80a2e693ff differ Binary files ./wordpress-3.4/.git/objects/d8/a8b805ff96e414a9ee7d0196f3e6eb9e368b13 and ./wordpress-3.4.1/.git/objects/d8/a8b805ff96e414a9ee7d0196f3e6eb9e368b13 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/d9/fb2feddeff27aa38e82da76688e76d3b3505ed ./wordpress-3.4.1/.git/objects/d9/fb2feddeff27aa38e82da76688e76d3b3505ed *** ./wordpress-3.4/.git/objects/d9/fb2feddeff27aa38e82da76688e76d3b3505ed 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/d9/fb2feddeff27aa38e82da76688e76d3b3505ed 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,3 **** - x}Q�j�0� - ��kZZ(t���[!n�q��@(��u\���]�F3����OW��$h����n��4$�#��A� J4 uG�r�{g) - �J���FH'���'LUy��./<�PVY��#��gqw��19v��'{g- rC�~{4�zǺG�/k�_Ҩ���{�H�0ы�bMb�=�����h�y�1�T��:�>��Pm.��-S��ۭ�� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/da/9a70a89bfaa8c45b2627034d8cf9f210a40ebf and ./wordpress-3.4.1/.git/objects/da/9a70a89bfaa8c45b2627034d8cf9f210a40ebf differ Binary files ./wordpress-3.4/.git/objects/da/b58683e8c10f4ddcc66a1e57f818be2d2d0305 and ./wordpress-3.4.1/.git/objects/da/b58683e8c10f4ddcc66a1e57f818be2d2d0305 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/da/d06437c3522ef61d097979aba41b85303a00dc ./wordpress-3.4.1/.git/objects/da/d06437c3522ef61d097979aba41b85303a00dc *** ./wordpress-3.4/.git/objects/da/d06437c3522ef61d097979aba41b85303a00dc 2012-06-13 16:59:59.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/da/d06437c3522ef61d097979aba41b85303a00dc 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - x+)JMU�4e040031QH/*������*f`aؿ�|�T����k��:��� - KS�*uK3u �,�L�K�K�s�r3����s�g�Y��������]?��%� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/da/ebe0dbefc8ff3e9ed10f0eb2e0c671a0aabaef and ./wordpress-3.4.1/.git/objects/da/ebe0dbefc8ff3e9ed10f0eb2e0c671a0aabaef differ Binary files ./wordpress-3.4/.git/objects/da/f4909ad2271ede2f6af656527c863d40d2d4ed and ./wordpress-3.4.1/.git/objects/da/f4909ad2271ede2f6af656527c863d40d2d4ed differ Binary files ./wordpress-3.4/.git/objects/da/fcd280534e55da467704e96c54699f18b41375 and ./wordpress-3.4.1/.git/objects/da/fcd280534e55da467704e96c54699f18b41375 differ Binary files ./wordpress-3.4/.git/objects/db/44df78c969854b9b4269a4c02ab7856c43e0f7 and ./wordpress-3.4.1/.git/objects/db/44df78c969854b9b4269a4c02ab7856c43e0f7 differ Binary files ./wordpress-3.4/.git/objects/db/7b0a2c720df966b5a422d13215ba11ebc19966 and ./wordpress-3.4.1/.git/objects/db/7b0a2c720df966b5a422d13215ba11ebc19966 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/db/e2f4816e0f8c60ac87a4b45876435c719fc661 ./wordpress-3.4.1/.git/objects/db/e2f4816e0f8c60ac87a4b45876435c719fc661 *** ./wordpress-3.4/.git/objects/db/e2f4816e0f8c60ac87a4b45876435c719fc661 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/db/e2f4816e0f8c60ac87a4b45876435c719fc661 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - x��MO�0��)]&A�e.|,���窚���:uiե�i�'I7�q�DZ�}��������j��a���λ�D���Tw&�em�b� �Q�3�d��E������ - -D���dK�����H�&6PQƵ+%�^��9de����G��Z�]k" ��a�\���Nc�a��s�B���B(����T�#�=�'0�w��tr�ϵ�d����M�uPY���O�AY�K<)Y�����"|Ʉ�o���K�`mK��Exh>A�Lz�d�(�B�%Hp*I���l7!�{�������<y@xd��^�]�*�H��|���@�W�u�����E[lg�V�4�L�Ҹv�5�� W����6б����:kk�l1�c�� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/dc/2955b1e42b69b8874d6f43663c26a793e9db25 and ./wordpress-3.4.1/.git/objects/dc/2955b1e42b69b8874d6f43663c26a793e9db25 differ Binary files ./wordpress-3.4/.git/objects/dc/41e58145f24947cccdf414fd05060d3129b622 and ./wordpress-3.4.1/.git/objects/dc/41e58145f24947cccdf414fd05060d3129b622 differ Binary files ./wordpress-3.4/.git/objects/dc/cc9bc4438f7f5d3ff4423db19c876825052ad5 and ./wordpress-3.4.1/.git/objects/dc/cc9bc4438f7f5d3ff4423db19c876825052ad5 differ Binary files ./wordpress-3.4/.git/objects/dc/cc9c493f3de1e0d21284c7186f429b2eae1dcc and ./wordpress-3.4.1/.git/objects/dc/cc9c493f3de1e0d21284c7186f429b2eae1dcc differ Binary files ./wordpress-3.4/.git/objects/dc/df3803b5e2bfd62313e830aede5eae00111098 and ./wordpress-3.4.1/.git/objects/dc/df3803b5e2bfd62313e830aede5eae00111098 differ Binary files ./wordpress-3.4/.git/objects/dd/15d165d6e9dc326272a15b6e3ca4e06318930e and ./wordpress-3.4.1/.git/objects/dd/15d165d6e9dc326272a15b6e3ca4e06318930e differ Binary files ./wordpress-3.4/.git/objects/dd/20c1276542eb641a52c05be312ce1d55df8651 and ./wordpress-3.4.1/.git/objects/dd/20c1276542eb641a52c05be312ce1d55df8651 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/dd/3b78bbcfcda95ac77f4940db4b9d392b4dda09 ./wordpress-3.4.1/.git/objects/dd/3b78bbcfcda95ac77f4940db4b9d392b4dda09 *** ./wordpress-3.4/.git/objects/dd/3b78bbcfcda95ac77f4940db4b9d392b4dda09 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/dd/3b78bbcfcda95ac77f4940db4b9d392b4dda09 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,4 **** - xuTQk�0ޫ�+�y��fN;{�2(��Ba�f졔���X�"y�ܮ-�s��n;pL$�}���Vf �?}x7?�����W��:��hUJ�Aj�7[�e&�z� z�|���L����'=��9�<w�oBhe��U +�.�J�EPF䘃фn4U�^ - %���)�� - Y,,��aJ�j��)dBÚx!��Ru�������{/���Cke�t�.%ؐ G���0Nl4��h�w�����^IJ��?Th�d�;��r ���d - Oq�?M+k�᜔�z��K�q��o��_�@d��V���h@�U�D�(z�r��o���x�/��V:n}R�p���� LX6=CO-��γ"�'7��nA)h�;�I2��l6#���;b��[��f1Ϙ)��0xm�x0ac�3h�D��9W=uD�Tl+�Bz���ٝ|��5�-�?#u�X��f�I���Ԙ�r��S]�5��Bu�rGG����w���cq搸�]k�t01���iQ䬝�3k�!�&��$z�ĥ�R�'���)E�K����0)Ua��g�/� �fa�fp'Tsm��$��N ���V��mò1썼e�ԏK,<�'��*���R*�$K�R�3���ͨRD�L]�v��t&�IJ�;���5קY&�ߋd��4�u������Kz��L����"��:��6��Ao)a߷��=/L�锿��!�CJ�i�w�3f� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/dd/4a5ae293f7972cfb2de4c402160973163a2bbf and ./wordpress-3.4.1/.git/objects/dd/4a5ae293f7972cfb2de4c402160973163a2bbf differ Binary files ./wordpress-3.4/.git/objects/dd/9df6e73f69480b688ac6bd950411412722d637 and ./wordpress-3.4.1/.git/objects/dd/9df6e73f69480b688ac6bd950411412722d637 differ Binary files ./wordpress-3.4/.git/objects/dd/e4eab299c2a5da21468879ba47f68a9bd4d86f and ./wordpress-3.4.1/.git/objects/dd/e4eab299c2a5da21468879ba47f68a9bd4d86f differ Binary files ./wordpress-3.4/.git/objects/de/4c1e9e719a5e66dc716d1d2379b018f95962d0 and ./wordpress-3.4.1/.git/objects/de/4c1e9e719a5e66dc716d1d2379b018f95962d0 differ Binary files ./wordpress-3.4/.git/objects/de/520237019aeb2a2756f96e3796dff0a8ec8f0f and ./wordpress-3.4.1/.git/objects/de/520237019aeb2a2756f96e3796dff0a8ec8f0f differ Binary files ./wordpress-3.4/.git/objects/de/5483e28642a7215b802834f02581ecc344728c and ./wordpress-3.4.1/.git/objects/de/5483e28642a7215b802834f02581ecc344728c differ Binary files ./wordpress-3.4/.git/objects/de/5aca35eae9cc74adc773ed9af65f5bb5c1c388 and ./wordpress-3.4.1/.git/objects/de/5aca35eae9cc74adc773ed9af65f5bb5c1c388 differ Binary files ./wordpress-3.4/.git/objects/de/adac3858fbf6590cf210ec6efcdd59cbfea4a1 and ./wordpress-3.4.1/.git/objects/de/adac3858fbf6590cf210ec6efcdd59cbfea4a1 differ Binary files ./wordpress-3.4/.git/objects/de/b41907e27a15a4217b929e39254f80d9b91c9b and ./wordpress-3.4.1/.git/objects/de/b41907e27a15a4217b929e39254f80d9b91c9b differ Binary files ./wordpress-3.4/.git/objects/de/c3f7c7028df98657860529461af29b8793601c and ./wordpress-3.4.1/.git/objects/de/c3f7c7028df98657860529461af29b8793601c differ Binary files ./wordpress-3.4/.git/objects/de/e484e0b1af02494c4128ae9797e220f8b30542 and ./wordpress-3.4.1/.git/objects/de/e484e0b1af02494c4128ae9797e220f8b30542 differ Binary files ./wordpress-3.4/.git/objects/de/ee8c47e36f0758b6bbb784b489bd65702f33e9 and ./wordpress-3.4.1/.git/objects/de/ee8c47e36f0758b6bbb784b489bd65702f33e9 differ Binary files ./wordpress-3.4/.git/objects/df/001db948668461a273727176a9852998608f88 and ./wordpress-3.4.1/.git/objects/df/001db948668461a273727176a9852998608f88 differ Binary files ./wordpress-3.4/.git/objects/df/bd5dee56546175650ff024bc9b3b9886b4e03d and ./wordpress-3.4.1/.git/objects/df/bd5dee56546175650ff024bc9b3b9886b4e03d differ Binary files ./wordpress-3.4/.git/objects/df/c878dd98a6fb6f740262bd75fa81b28476aad7 and ./wordpress-3.4.1/.git/objects/df/c878dd98a6fb6f740262bd75fa81b28476aad7 differ Binary files ./wordpress-3.4/.git/objects/e0/b4991bf7a4452923c8cd8d9b94edde52e24ecd and ./wordpress-3.4.1/.git/objects/e0/b4991bf7a4452923c8cd8d9b94edde52e24ecd differ Binary files ./wordpress-3.4/.git/objects/e0/c594e6abae282746a47ba818adbb85436a7cf6 and ./wordpress-3.4.1/.git/objects/e0/c594e6abae282746a47ba818adbb85436a7cf6 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/e1/0607a8f10f23b2fe210c26a5e80c7c84495d03 ./wordpress-3.4.1/.git/objects/e1/0607a8f10f23b2fe210c26a5e80c7c84495d03 *** ./wordpress-3.4/.git/objects/e1/0607a8f10f23b2fe210c26a5e80c7c84495d03 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/e1/0607a8f10f23b2fe210c26a5e80c7c84495d03 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,5 **** - xmT]o�0�y���S<E^�QxY�Ĥ!6Ąr���%��?:����kgi��˽�9��snZv�$���wo.�'g�,�x0rMZr��S6gs|:.u�1�i�Og��,��Go�/<�H'+Pj�U ����ц|��L���R+2�,{_@���Y� Z���Q� 8��G������Y*P�Cܴ�ےY��8��E�U� zB�"��� - �˥H'G�tk�y�vknHU�A������AQ�_�x���x>��:m��n�a���wWk���e�Ƶf{���B���Ki�eq�P�\5P�h�����D1N�*�A�J���L�ۄ�ITy��m指�x��֏�,��"���ުN��Pn�����L���y�7!�Zڞ��4 �C�b - _���eiC�a^Q�Vڐz��g/y�a���'^н�����ۍ^C]D�yH'��aѠ5�� - +� - �J�.U��h3��=k��1��S�L8���W���F{�����m| c�~�n>� ��z`|�`�A�X�ې&1%RJ��S�݄9^��P��7w�,;�_�i#��}9��w]������_D��F�� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/e1/0b97ff9d84d7ff8d7efe5c4c09783dd390e338 and ./wordpress-3.4.1/.git/objects/e1/0b97ff9d84d7ff8d7efe5c4c09783dd390e338 differ Binary files ./wordpress-3.4/.git/objects/e1/41995cef94318b960198453f72bd60ab99ca8a and ./wordpress-3.4.1/.git/objects/e1/41995cef94318b960198453f72bd60ab99ca8a differ Binary files ./wordpress-3.4/.git/objects/e1/4da3e8f6ef7505e093499823383ec171d9ba85 and ./wordpress-3.4.1/.git/objects/e1/4da3e8f6ef7505e093499823383ec171d9ba85 differ Binary files ./wordpress-3.4/.git/objects/e1/b879d6ccccbfc1949d71acd5eb5a32e6a2efa5 and ./wordpress-3.4.1/.git/objects/e1/b879d6ccccbfc1949d71acd5eb5a32e6a2efa5 differ Binary files ./wordpress-3.4/.git/objects/e2/5d155f404eab8a075969c9d29610b0decf82b8 and ./wordpress-3.4.1/.git/objects/e2/5d155f404eab8a075969c9d29610b0decf82b8 differ Binary files ./wordpress-3.4/.git/objects/e2/cf47669e9d76477121bea63c726a6feed05d20 and ./wordpress-3.4.1/.git/objects/e2/cf47669e9d76477121bea63c726a6feed05d20 differ Binary files ./wordpress-3.4/.git/objects/e2/db55f22d6752e10a57f07e286081ebebacfea5 and ./wordpress-3.4.1/.git/objects/e2/db55f22d6752e10a57f07e286081ebebacfea5 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/e2/e2fb46878d373e135de0e0034ec4a653eeb4d5 ./wordpress-3.4.1/.git/objects/e2/e2fb46878d373e135de0e0034ec4a653eeb4d5 *** ./wordpress-3.4/.git/objects/e2/e2fb46878d373e135de0e0034ec4a653eeb4d5 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/e2/e2fb46878d373e135de0e0034ec4a653eeb4d5 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,4 **** - x�V�n�0�O���Ra�lK���m?`�I��ĩ�@Q���K�J ��9s�c'\$h�}{�5;W$+X���ۃ(>���K��� �?�>�K��*��yM��T�×��͘��b������qzP1i��Iv�U����a�;g�{�&BfTb�!ڹ_vӲ�D��,CJŊHZ��B�᭢� - Ύ@Y�k9k\5��g��=�x��+��f� n����S�����$����3E�a��,���`��(3"/^7�5�AٝUH/��t������9�rI�l*Q��I�Y���2������YY5�-�<�2��@ - ��`�-�kk�Ӯ�f���7���z��P���8'*��t r�]�D�����PF�S�=��cl���+s�.�XF6��@�%�[R��Fnd�'���G)�2Õ������/����k�ʣ�gE�����!�t��o5�*"/o��K�| ګ��CB�� g8���]XfKR�M'���`k����Z�4g<��Os�� 9����\o�7\\0IS�Z���19�^���� ���:�����[uʠ��%��� ��XV4j���K�����ܻS@ɐ�x�{�Xq�4:�&�G_�����;��^QW���u�kJd�C��%��g�'/�� - � ��}1\�cG4zBC��D�Ծ/M���C�no�Ycp��x~pq���Y���������5"蹸�*��p�P���hg@��n��Ъ�( lU�'-<M�e*�W�����L���&R�s�>©�BƳ$I|I�9ץ�Cς�.��ڵ��,D�S���XN����:{:����#�?�Q� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/e3/0869bdc836074d4b07c03508f3d0c70745342d and ./wordpress-3.4.1/.git/objects/e3/0869bdc836074d4b07c03508f3d0c70745342d differ Binary files ./wordpress-3.4/.git/objects/e3/1b29d370c252d3c095e1827dd8c40b10df497d and ./wordpress-3.4.1/.git/objects/e3/1b29d370c252d3c095e1827dd8c40b10df497d differ Binary files ./wordpress-3.4/.git/objects/e3/2e285a614bdac7b85e1e01a4d6745dd9f7834f and ./wordpress-3.4.1/.git/objects/e3/2e285a614bdac7b85e1e01a4d6745dd9f7834f differ Binary files ./wordpress-3.4/.git/objects/e3/903d3661235f59073d967b7c72a1a16331726f and ./wordpress-3.4.1/.git/objects/e3/903d3661235f59073d967b7c72a1a16331726f differ Binary files ./wordpress-3.4/.git/objects/e3/9d1f4fc56079707561814f24a4c3686f44cb68 and ./wordpress-3.4.1/.git/objects/e3/9d1f4fc56079707561814f24a4c3686f44cb68 differ Binary files ./wordpress-3.4/.git/objects/e3/c135ff49dd1f79e394fcfd9746f6c8edb8eae1 and ./wordpress-3.4.1/.git/objects/e3/c135ff49dd1f79e394fcfd9746f6c8edb8eae1 differ Binary files ./wordpress-3.4/.git/objects/e3/e8e66e1a9a4da6887ee067e172d1cfc7e13ff0 and ./wordpress-3.4.1/.git/objects/e3/e8e66e1a9a4da6887ee067e172d1cfc7e13ff0 differ Binary files ./wordpress-3.4/.git/objects/e3/fb1fddb245d383b4655c3ccf1dfd0d30725f0c and ./wordpress-3.4.1/.git/objects/e3/fb1fddb245d383b4655c3ccf1dfd0d30725f0c differ Binary files ./wordpress-3.4/.git/objects/e4/263dc3c1107fdb2c51ddf4b3ed5a237ea11f0b and ./wordpress-3.4.1/.git/objects/e4/263dc3c1107fdb2c51ddf4b3ed5a237ea11f0b differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/e4/40577f834a077a07cc0bd1ff5fffc711cd73a0 ./wordpress-3.4.1/.git/objects/e4/40577f834a077a07cc0bd1ff5fffc711cd73a0 *** ./wordpress-3.4/.git/objects/e4/40577f834a077a07cc0bd1ff5fffc711cd73a0 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/e4/40577f834a077a07cc0bd1ff5fffc711cd73a0 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,3 **** - x]S�n�0�s�B�C`��r��#��h�[�>}�e�Vf[�$����('����D�PG$��&%�>�3�8'�-�5��&C����b:Fk:�L��w÷�Rx߸x4ʵ/�T(S��©�6l5F]תl3p1كPމ̚F,�|1����$R���|����������h����^�q� ��E��V^�:�<eyA�,����� ̯��(۬�%*�Q@ϒG��/�ԛ��xo*4JXxܺTq7�Tگ����ށ�5D���4�ȉ - �--t��E�#���B����b��@�1��+�s�x*�Ã�M�6���"Ih���6�y�鼫">$_�FtW�C�4�5��䜗��ԣ�B7�J�փ���W����u��wl4���|��f��:(���� �c�9r^`LHf>Ա�״L6�F�G��$�f��)�z��0�L��!.�+�?���NY� - �-�����|³�ʠD����t������q֛<��9c��H�p�/'zYp����*�z%#��e�J�{0�m�2��nH9v����8�Jd��h��1�v,�?\6���E: \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/e4/5760f628a4be7d13e4e87dd89f0b230c2b23f0 and ./wordpress-3.4.1/.git/objects/e4/5760f628a4be7d13e4e87dd89f0b230c2b23f0 differ Binary files ./wordpress-3.4/.git/objects/e4/7a5c630afdf30eb9e8d0cb1b1ebb0024e09288 and ./wordpress-3.4.1/.git/objects/e4/7a5c630afdf30eb9e8d0cb1b1ebb0024e09288 differ Binary files ./wordpress-3.4/.git/objects/e4/7e1b5ac4dfe3c54ae099899ac3143669b1fa90 and ./wordpress-3.4.1/.git/objects/e4/7e1b5ac4dfe3c54ae099899ac3143669b1fa90 differ Binary files ./wordpress-3.4/.git/objects/e4/856dac68b790a958e9b4948c1dc2e6861da841 and ./wordpress-3.4.1/.git/objects/e4/856dac68b790a958e9b4948c1dc2e6861da841 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/e4/8a0cb276c9a7efa953db119904f6d826bf5832 ./wordpress-3.4.1/.git/objects/e4/8a0cb276c9a7efa953db119904f6d826bf5832 *** ./wordpress-3.4/.git/objects/e4/8a0cb276c9a7efa953db119904f6d826bf5832 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/e4/8a0cb276c9a7efa953db119904f6d826bf5832 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - x���kA�G[�VDT�A=�$����!�hS*�F�7�$S��fg�����Az�E�8E�"�bo�"ۿ��W���Q0�8��of�}��ݙ�E�F�{��88�!{��P����Ƞ��:����r<�ς<�k�p\�>xo;!���YO�?���B������ 4>�AX�>�%A�����a�`d�aYH���0���P�>��U�gi����\��z���#d�*y���I*�1�LĜ^��tӤ�ON�}v���y2�T���3�ҹ&'� v���-�+��>�܂��a���ސ?|ጋ�T�+��6�&֧���\��b� ��I�q�֧�rU�5Yf#�d�S\�Ѹ.a|ߧ#�P9�hN�95S�Ɖ]�%�H��RLO�h���ec<�2PB�t,ʞL����3���x����鷙���L�f���/?ɴ�x��6��L��AԦ�G�lyi36$��&ӟm��\�V�ֶ�noa��M[��L�屩��X���cg vOM_z߀�U�_�[����q�3���G�?�C{�s���'��� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/e4/dfbda1cecec8944717f5894a8dc5c201a31cda and ./wordpress-3.4.1/.git/objects/e4/dfbda1cecec8944717f5894a8dc5c201a31cda differ Binary files ./wordpress-3.4/.git/objects/e5/201079446a64a0e3e5f585f76ceb98c03d5aaa and ./wordpress-3.4.1/.git/objects/e5/201079446a64a0e3e5f585f76ceb98c03d5aaa differ Binary files ./wordpress-3.4/.git/objects/e5/25716327d65a5d0ccf07a228e77bc44d4e7751 and ./wordpress-3.4.1/.git/objects/e5/25716327d65a5d0ccf07a228e77bc44d4e7751 differ Binary files ./wordpress-3.4/.git/objects/e5/65824aafafe632011b281cba976baf8b3ba89a and ./wordpress-3.4.1/.git/objects/e5/65824aafafe632011b281cba976baf8b3ba89a differ Binary files ./wordpress-3.4/.git/objects/e5/874f29569a56e7725944c1b81928491f038b8c and ./wordpress-3.4.1/.git/objects/e5/874f29569a56e7725944c1b81928491f038b8c differ Binary files ./wordpress-3.4/.git/objects/e5/d5880f9e9a832dd63c6671a40f700b9d7be202 and ./wordpress-3.4.1/.git/objects/e5/d5880f9e9a832dd63c6671a40f700b9d7be202 differ Binary files ./wordpress-3.4/.git/objects/e6/1401616189a112c48d8921e432c02071a9f248 and ./wordpress-3.4.1/.git/objects/e6/1401616189a112c48d8921e432c02071a9f248 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/e6/5b0c8dc6c22bdb08dbc3d7385e8e4e2bafd5b0 ./wordpress-3.4.1/.git/objects/e6/5b0c8dc6c22bdb08dbc3d7385e8e4e2bafd5b0 *** ./wordpress-3.4/.git/objects/e6/5b0c8dc6c22bdb08dbc3d7385e8e4e2bafd5b0 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/e6/5b0c8dc6c22bdb08dbc3d7385e8e4e2bafd5b0 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,3 **** - x���K�0�}�_q�AѮv���(��=8�8�q�����K�F�{�mE�uly����K��L�6�.���rF���4���Q*V - PZ2��|#y�L%)�Al��^g�#��`8�&�;�m?+�@[��g��f ��H%rZ�&GiND� - �D�"��\�9r�u�1���hr��/d,~��Y\0Q�_��-t��vmT<E�� n1��ꇽ�H���L(�7*}��lf7�@��9�^����H!��'��ti��M��4����|[���\0�ժ8��r;�o&��<� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/e6/5b19cb29e3a05550ec21e15a052045f0e703f1 and ./wordpress-3.4.1/.git/objects/e6/5b19cb29e3a05550ec21e15a052045f0e703f1 differ Binary files ./wordpress-3.4/.git/objects/e6/71094cb0eb210b756117f992cf5ca2caa698fd and ./wordpress-3.4.1/.git/objects/e6/71094cb0eb210b756117f992cf5ca2caa698fd differ Binary files ./wordpress-3.4/.git/objects/e6/7d868a2b4bde9250079bfca077ffefc2f3fc7b and ./wordpress-3.4.1/.git/objects/e6/7d868a2b4bde9250079bfca077ffefc2f3fc7b differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/e6/ac87542c053229af4e76effe6cd9198eab5229 ./wordpress-3.4.1/.git/objects/e6/ac87542c053229af4e76effe6cd9198eab5229 *** ./wordpress-3.4/.git/objects/e6/ac87542c053229af4e76effe6cd9198eab5229 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/e6/ac87542c053229af4e76effe6cd9198eab5229 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - x��QO�0�}�>�M�űL4��@�A��IY(�v�:��}w�f"1������:��nn��f%O>G��xQ�����g4.x����l������`�Z���=r^��\��I].����u+�n�����ë�G�0>-v�Ș�dI���B�eb�K:��O�NF>a49!���k3���M�I3N�+� Oŏ���X�#W>i��A�hשC80�% K�b\��'UD�ļ/�6���D���r"������'��_T���f�)* �x�����xQJ!��0+�Ii�m��b!*�l�.�F��'��/���:��ٯ��~�VS��i�<��M���:ZZ�?nU�� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/e6/de8cb31f3821ed44935671df28a77f9c73770e and ./wordpress-3.4.1/.git/objects/e6/de8cb31f3821ed44935671df28a77f9c73770e differ Binary files ./wordpress-3.4/.git/objects/e7/43e8f4a8692b9904462ba00694eba38b332f4f and ./wordpress-3.4.1/.git/objects/e7/43e8f4a8692b9904462ba00694eba38b332f4f differ Binary files ./wordpress-3.4/.git/objects/e7/57dc4b5f613b62da8b24ed51c0d5d9edc040ee and ./wordpress-3.4.1/.git/objects/e7/57dc4b5f613b62da8b24ed51c0d5d9edc040ee differ Binary files ./wordpress-3.4/.git/objects/e7/5d95fc799039576a47f73df58fa516cec5d2b2 and ./wordpress-3.4.1/.git/objects/e7/5d95fc799039576a47f73df58fa516cec5d2b2 differ Binary files ./wordpress-3.4/.git/objects/e7/6f25878c9cf14987cc59d15d882c89268abcb9 and ./wordpress-3.4.1/.git/objects/e7/6f25878c9cf14987cc59d15d882c89268abcb9 differ Binary files ./wordpress-3.4/.git/objects/e7/75869730c4151e7905679a3968b51bb55afbdf and ./wordpress-3.4.1/.git/objects/e7/75869730c4151e7905679a3968b51bb55afbdf differ Binary files ./wordpress-3.4/.git/objects/e8/0301484332401f522c693f3c29d1d82f87e9a2 and ./wordpress-3.4.1/.git/objects/e8/0301484332401f522c693f3c29d1d82f87e9a2 differ Binary files ./wordpress-3.4/.git/objects/e8/3d2e5370985fa570249fc526bf9eeaa122fe64 and ./wordpress-3.4.1/.git/objects/e8/3d2e5370985fa570249fc526bf9eeaa122fe64 differ Binary files ./wordpress-3.4/.git/objects/e8/66925a944f8e33452951c6d819724267f1f002 and ./wordpress-3.4.1/.git/objects/e8/66925a944f8e33452951c6d819724267f1f002 differ Binary files ./wordpress-3.4/.git/objects/e8/76e0e5e725df79c26198ab33cebc9d259ed36a and ./wordpress-3.4.1/.git/objects/e8/76e0e5e725df79c26198ab33cebc9d259ed36a differ Binary files ./wordpress-3.4/.git/objects/e8/ac151a207cf25671dd1bd9e2c9f8d3dbf89eaa and ./wordpress-3.4.1/.git/objects/e8/ac151a207cf25671dd1bd9e2c9f8d3dbf89eaa differ Binary files ./wordpress-3.4/.git/objects/e8/bbe999d0cf44244ee1cd17177f8f6f4fcf7e49 and ./wordpress-3.4.1/.git/objects/e8/bbe999d0cf44244ee1cd17177f8f6f4fcf7e49 differ Binary files ./wordpress-3.4/.git/objects/e8/c84d3f4d9c68ffac39e385a898a0cc8ffc5800 and ./wordpress-3.4.1/.git/objects/e8/c84d3f4d9c68ffac39e385a898a0cc8ffc5800 differ Binary files ./wordpress-3.4/.git/objects/e8/ecc5aab7a1aaac0595caf126d880bfeda7a0ae and ./wordpress-3.4.1/.git/objects/e8/ecc5aab7a1aaac0595caf126d880bfeda7a0ae differ Binary files ./wordpress-3.4/.git/objects/e9/82809af1f3319d78cea838be16b7c6b62986e7 and ./wordpress-3.4.1/.git/objects/e9/82809af1f3319d78cea838be16b7c6b62986e7 differ Binary files ./wordpress-3.4/.git/objects/e9/aeba050766144782ae9eee56a70346df262d62 and ./wordpress-3.4.1/.git/objects/e9/aeba050766144782ae9eee56a70346df262d62 differ Binary files ./wordpress-3.4/.git/objects/e9/c909d621ea3bfa836292a0c3b3e3fb4f2786a8 and ./wordpress-3.4.1/.git/objects/e9/c909d621ea3bfa836292a0c3b3e3fb4f2786a8 differ Binary files ./wordpress-3.4/.git/objects/e9/d59e2258168c68e1e08719d7f8748c884960d9 and ./wordpress-3.4.1/.git/objects/e9/d59e2258168c68e1e08719d7f8748c884960d9 differ Binary files ./wordpress-3.4/.git/objects/e9/d97ed2765a63742a951bc8dba0eccddf888467 and ./wordpress-3.4.1/.git/objects/e9/d97ed2765a63742a951bc8dba0eccddf888467 differ Binary files ./wordpress-3.4/.git/objects/ea/11b3da1e80a87c156181fa34e3c433bb202c6f and ./wordpress-3.4.1/.git/objects/ea/11b3da1e80a87c156181fa34e3c433bb202c6f differ Binary files ./wordpress-3.4/.git/objects/ea/2575f56665f718980fd6d302d57d90e34aef57 and ./wordpress-3.4.1/.git/objects/ea/2575f56665f718980fd6d302d57d90e34aef57 differ Binary files ./wordpress-3.4/.git/objects/ea/4033119fd1cf7198849a45a0c7683130eafc3f and ./wordpress-3.4.1/.git/objects/ea/4033119fd1cf7198849a45a0c7683130eafc3f differ Binary files ./wordpress-3.4/.git/objects/ea/668de230d7bdd68ea7b13448c96f1b1468ef72 and ./wordpress-3.4.1/.git/objects/ea/668de230d7bdd68ea7b13448c96f1b1468ef72 differ Binary files ./wordpress-3.4/.git/objects/eb/1787db32d5c8dcf64063ee448799385971a1ff and ./wordpress-3.4.1/.git/objects/eb/1787db32d5c8dcf64063ee448799385971a1ff differ Binary files ./wordpress-3.4/.git/objects/eb/352ef371d4d4207fc7d3be9ef43cfc65674c0c and ./wordpress-3.4.1/.git/objects/eb/352ef371d4d4207fc7d3be9ef43cfc65674c0c differ Binary files ./wordpress-3.4/.git/objects/eb/83055824345e1becaec7c6346c6cd0d16db996 and ./wordpress-3.4.1/.git/objects/eb/83055824345e1becaec7c6346c6cd0d16db996 differ Binary files ./wordpress-3.4/.git/objects/eb/f6e9b54894e35d16f441cedad769eac1a4e32c and ./wordpress-3.4.1/.git/objects/eb/f6e9b54894e35d16f441cedad769eac1a4e32c differ Binary files ./wordpress-3.4/.git/objects/ec/05d2948477d42941702b9de842a00558c9170f and ./wordpress-3.4.1/.git/objects/ec/05d2948477d42941702b9de842a00558c9170f differ Binary files ./wordpress-3.4/.git/objects/ec/13343c0d04a7e395042c0cab550f19a900ee5a and ./wordpress-3.4.1/.git/objects/ec/13343c0d04a7e395042c0cab550f19a900ee5a differ Binary files ./wordpress-3.4/.git/objects/ec/2a01f21f8322ca57a05d0e5e24606464094233 and ./wordpress-3.4.1/.git/objects/ec/2a01f21f8322ca57a05d0e5e24606464094233 differ Binary files ./wordpress-3.4/.git/objects/ec/4709cd42c89058de1c6ca0effe6a87cee4fd0f and ./wordpress-3.4.1/.git/objects/ec/4709cd42c89058de1c6ca0effe6a87cee4fd0f differ Binary files ./wordpress-3.4/.git/objects/ec/4916634a0dbaf0ee3b91bbcab8f32f713499ec and ./wordpress-3.4.1/.git/objects/ec/4916634a0dbaf0ee3b91bbcab8f32f713499ec differ Binary files ./wordpress-3.4/.git/objects/ec/50436a6eae465de05e16d0fc1907f60893b285 and ./wordpress-3.4.1/.git/objects/ec/50436a6eae465de05e16d0fc1907f60893b285 differ Binary files ./wordpress-3.4/.git/objects/ec/854c1f9694622e24727a1adaff3dac4ad75def and ./wordpress-3.4.1/.git/objects/ec/854c1f9694622e24727a1adaff3dac4ad75def differ Binary files ./wordpress-3.4/.git/objects/ec/8700a02f5869eae950d81f90ab2a335f07343f and ./wordpress-3.4.1/.git/objects/ec/8700a02f5869eae950d81f90ab2a335f07343f differ Binary files ./wordpress-3.4/.git/objects/ec/9f5da73bc898de604c0c1b34f57a81440f896b and ./wordpress-3.4.1/.git/objects/ec/9f5da73bc898de604c0c1b34f57a81440f896b differ Binary files ./wordpress-3.4/.git/objects/ec/c9d0ad0ff207b9e8f4ddb6572bb810559c0666 and ./wordpress-3.4.1/.git/objects/ec/c9d0ad0ff207b9e8f4ddb6572bb810559c0666 differ Binary files ./wordpress-3.4/.git/objects/ec/f29f58023b458402b5f069404d4d348fdbcdf4 and ./wordpress-3.4.1/.git/objects/ec/f29f58023b458402b5f069404d4d348fdbcdf4 differ Binary files ./wordpress-3.4/.git/objects/ed/0a5fd373f283a2bdfe038db842375ef2ce9780 and ./wordpress-3.4.1/.git/objects/ed/0a5fd373f283a2bdfe038db842375ef2ce9780 differ Binary files ./wordpress-3.4/.git/objects/ed/5bf76e45912ac97b2bcd2616610e03cdda406d and ./wordpress-3.4.1/.git/objects/ed/5bf76e45912ac97b2bcd2616610e03cdda406d differ Binary files ./wordpress-3.4/.git/objects/ed/6aac8b78acbaaf743c2a4e283735785773ffb1 and ./wordpress-3.4.1/.git/objects/ed/6aac8b78acbaaf743c2a4e283735785773ffb1 differ Binary files ./wordpress-3.4/.git/objects/ed/8c5b7d8b12f6f359db48770d0bf7c7f1b512ee and ./wordpress-3.4.1/.git/objects/ed/8c5b7d8b12f6f359db48770d0bf7c7f1b512ee differ Binary files ./wordpress-3.4/.git/objects/ed/cfa2d69e8853e73e6963acebe74e880cde8e00 and ./wordpress-3.4.1/.git/objects/ed/cfa2d69e8853e73e6963acebe74e880cde8e00 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/ee/1195fa71c5d03534be00b34295c2621d0d39c2 ./wordpress-3.4.1/.git/objects/ee/1195fa71c5d03534be00b34295c2621d0d39c2 *** ./wordpress-3.4/.git/objects/ee/1195fa71c5d03534be00b34295c2621d0d39c2 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/ee/1195fa71c5d03534be00b34295c2621d0d39c2 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,3 **** - x�TMO�@�5�Sa�]��Ӗ��"�F���ڬ'�k팡�w�!�T��~<ϼyo�������Oo&�۪ ��� �8W�%�J�%��*��h�zu����gZ!���U�O�{A@�A��^B�n�EPt�?�.]�bnO�̯Si�̣���EۈZ��AGH�as.�*�����s��Qޫ���g`ZVF�'y@tQ����r�Z!�/�4:�+��,�� �8yA��2~#�+.խ�������g��*�AY��r����@LHZ�2��<d��ٍ��ix�Oq���NX��4�kPs*- - ��5�]�����j&�t��q5�t����h�z�~6�twjw!h�eζC�!+�pm�S��tc��1��P8��u�k�t�JZ>Å��㖌�8�l��4���?��aO0�V�Z�4cY���WrX��p#�����1F�,g��&v=�c��>ܶS8����|�,��12*"�5���h���>(]k�������:3q - $����9tr�,���3F'�66�1����"wVC4O�s�T���=��o#Ha�)�(���b㾗i�n�(���:��7j�F/G'q�Ѿh�1+�q�z��ҍGO'�8��{�1���)�v���/)�� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/ee/3240107de072c0f456c84a560c754a9cf5a955 and ./wordpress-3.4.1/.git/objects/ee/3240107de072c0f456c84a560c754a9cf5a955 differ Binary files ./wordpress-3.4/.git/objects/ee/3d369d02238e02e0185349064c637232d0e15a and ./wordpress-3.4.1/.git/objects/ee/3d369d02238e02e0185349064c637232d0e15a differ Binary files ./wordpress-3.4/.git/objects/ee/71313d65e3366b7658384bfe710d4b0a7be698 and ./wordpress-3.4.1/.git/objects/ee/71313d65e3366b7658384bfe710d4b0a7be698 differ Binary files ./wordpress-3.4/.git/objects/ee/9b9e8feca78f8a4bb0d90369eefd29e1dee642 and ./wordpress-3.4.1/.git/objects/ee/9b9e8feca78f8a4bb0d90369eefd29e1dee642 differ Binary files ./wordpress-3.4/.git/objects/ee/bfb3d5ac589c9a6c3b50749ba7b5031d2c173e and ./wordpress-3.4.1/.git/objects/ee/bfb3d5ac589c9a6c3b50749ba7b5031d2c173e differ Binary files ./wordpress-3.4/.git/objects/ee/ce437d69e02f48cd2aaa7bc54d1503a2efff02 and ./wordpress-3.4.1/.git/objects/ee/ce437d69e02f48cd2aaa7bc54d1503a2efff02 differ Binary files ./wordpress-3.4/.git/objects/ee/d5bd1ae5fb67e8057e5144e5f5be369977af05 and ./wordpress-3.4.1/.git/objects/ee/d5bd1ae5fb67e8057e5144e5f5be369977af05 differ Binary files ./wordpress-3.4/.git/objects/ee/ef4d64b3aafd4e0e86ee3bed31e95ea744cb6c and ./wordpress-3.4.1/.git/objects/ee/ef4d64b3aafd4e0e86ee3bed31e95ea744cb6c differ Binary files ./wordpress-3.4/.git/objects/ef/1129c0deab0f4731b2a88981c60b5e27778d7a and ./wordpress-3.4.1/.git/objects/ef/1129c0deab0f4731b2a88981c60b5e27778d7a differ Binary files ./wordpress-3.4/.git/objects/ef/affa5ae93787ccda46d369465db0b063f735ff and ./wordpress-3.4.1/.git/objects/ef/affa5ae93787ccda46d369465db0b063f735ff differ Binary files ./wordpress-3.4/.git/objects/ef/c6f3dcebf5675dc050534e92412d97d276c8b0 and ./wordpress-3.4.1/.git/objects/ef/c6f3dcebf5675dc050534e92412d97d276c8b0 differ Binary files ./wordpress-3.4/.git/objects/ef/f530060e6f5e23c681e59b1bb573b5515d5c88 and ./wordpress-3.4.1/.git/objects/ef/f530060e6f5e23c681e59b1bb573b5515d5c88 differ Binary files ./wordpress-3.4/.git/objects/f0/0e7b39e5776f5c9b522ab1abcd5694e5f5d876 and ./wordpress-3.4.1/.git/objects/f0/0e7b39e5776f5c9b522ab1abcd5694e5f5d876 differ Binary files ./wordpress-3.4/.git/objects/f0/9933e387e5561ddf4b538342c7bec303056e42 and ./wordpress-3.4.1/.git/objects/f0/9933e387e5561ddf4b538342c7bec303056e42 differ Binary files ./wordpress-3.4/.git/objects/f0/d7cbdebe379a7da89b8b51dbb56e659c12345e and ./wordpress-3.4.1/.git/objects/f0/d7cbdebe379a7da89b8b51dbb56e659c12345e differ Binary files ./wordpress-3.4/.git/objects/f0/da6ecc5c9095b8d5c9b4a3e91e5155c58af0cd and ./wordpress-3.4.1/.git/objects/f0/da6ecc5c9095b8d5c9b4a3e91e5155c58af0cd differ Binary files ./wordpress-3.4/.git/objects/f1/8a138b3fa1d75b6532a062ed705bb777f349c1 and ./wordpress-3.4.1/.git/objects/f1/8a138b3fa1d75b6532a062ed705bb777f349c1 differ Binary files ./wordpress-3.4/.git/objects/f1/b96fb212a92cb27d382d4c8c133b0f550e698e and ./wordpress-3.4.1/.git/objects/f1/b96fb212a92cb27d382d4c8c133b0f550e698e differ Binary files ./wordpress-3.4/.git/objects/f1/ca95e60740e7e8ce517a361e4008b91f687a5f and ./wordpress-3.4.1/.git/objects/f1/ca95e60740e7e8ce517a361e4008b91f687a5f differ Binary files ./wordpress-3.4/.git/objects/f1/d9743fd9ef47d05509c49ee302f09213207125 and ./wordpress-3.4.1/.git/objects/f1/d9743fd9ef47d05509c49ee302f09213207125 differ Binary files ./wordpress-3.4/.git/objects/f1/f42b9ac6b5073dd5f9b30adc34589f3fc353cb and ./wordpress-3.4.1/.git/objects/f1/f42b9ac6b5073dd5f9b30adc34589f3fc353cb differ Binary files ./wordpress-3.4/.git/objects/f2/4f420d832f4ac007962e3cbb92972cbc4f490f and ./wordpress-3.4.1/.git/objects/f2/4f420d832f4ac007962e3cbb92972cbc4f490f differ Binary files ./wordpress-3.4/.git/objects/f2/6255fca65dd35677e331dfcd2193c18b2e3457 and ./wordpress-3.4.1/.git/objects/f2/6255fca65dd35677e331dfcd2193c18b2e3457 differ Binary files ./wordpress-3.4/.git/objects/f2/64c0d7719f8649f420fcf88373d9048872aa0d and ./wordpress-3.4.1/.git/objects/f2/64c0d7719f8649f420fcf88373d9048872aa0d differ Binary files ./wordpress-3.4/.git/objects/f2/853708d8f662c022e061aef028a602f5be2602 and ./wordpress-3.4.1/.git/objects/f2/853708d8f662c022e061aef028a602f5be2602 differ Binary files ./wordpress-3.4/.git/objects/f2/ae77802c9e5562b66c8f214c218c5c7a3afc54 and ./wordpress-3.4.1/.git/objects/f2/ae77802c9e5562b66c8f214c218c5c7a3afc54 differ Binary files ./wordpress-3.4/.git/objects/f2/c4d3093aeae2da0c158b006a38c6d43cea22a2 and ./wordpress-3.4.1/.git/objects/f2/c4d3093aeae2da0c158b006a38c6d43cea22a2 differ Binary files ./wordpress-3.4/.git/objects/f3/178fee7449428e91ffbb8eda2da23f33d7df2c and ./wordpress-3.4.1/.git/objects/f3/178fee7449428e91ffbb8eda2da23f33d7df2c differ Binary files ./wordpress-3.4/.git/objects/f3/2574abdb1773f5106e655e53d8a18ac74bfb8e and ./wordpress-3.4.1/.git/objects/f3/2574abdb1773f5106e655e53d8a18ac74bfb8e differ Binary files ./wordpress-3.4/.git/objects/f3/29c86e52698262b18839923fca9165049c139e and ./wordpress-3.4.1/.git/objects/f3/29c86e52698262b18839923fca9165049c139e differ Binary files ./wordpress-3.4/.git/objects/f3/5fa18689eb09b7305b44c8107aa5370e517ef1 and ./wordpress-3.4.1/.git/objects/f3/5fa18689eb09b7305b44c8107aa5370e517ef1 differ Binary files ./wordpress-3.4/.git/objects/f3/cbe546c54cf5bfc71afb30f810484bfe27200e and ./wordpress-3.4.1/.git/objects/f3/cbe546c54cf5bfc71afb30f810484bfe27200e differ Binary files ./wordpress-3.4/.git/objects/f3/d4b4490223c9429434d9f3cf9842862229bc26 and ./wordpress-3.4.1/.git/objects/f3/d4b4490223c9429434d9f3cf9842862229bc26 differ Binary files ./wordpress-3.4/.git/objects/f4/18745929e79943ab48d10951a2da54b65ad716 and ./wordpress-3.4.1/.git/objects/f4/18745929e79943ab48d10951a2da54b65ad716 differ Binary files ./wordpress-3.4/.git/objects/f4/1ec7fdb1ce6cea159f04d296b71cf69262ee76 and ./wordpress-3.4.1/.git/objects/f4/1ec7fdb1ce6cea159f04d296b71cf69262ee76 differ Binary files ./wordpress-3.4/.git/objects/f4/8daea2cbc0c9184b820927defb7fc0b778a9f7 and ./wordpress-3.4.1/.git/objects/f4/8daea2cbc0c9184b820927defb7fc0b778a9f7 differ Binary files ./wordpress-3.4/.git/objects/f4/af998e334b21468f42da913f356bb1cab6915e and ./wordpress-3.4.1/.git/objects/f4/af998e334b21468f42da913f356bb1cab6915e differ Binary files ./wordpress-3.4/.git/objects/f4/d4794712d0264a2e960d46b2328a2979b19181 and ./wordpress-3.4.1/.git/objects/f4/d4794712d0264a2e960d46b2328a2979b19181 differ Binary files ./wordpress-3.4/.git/objects/f4/fe306b7d6df4ae483c05f02fa1add92dcbbbb7 and ./wordpress-3.4.1/.git/objects/f4/fe306b7d6df4ae483c05f02fa1add92dcbbbb7 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/f5/9674908931d8c67ec8504970fac7f3f795d733 ./wordpress-3.4.1/.git/objects/f5/9674908931d8c67ec8504970fac7f3f795d733 *** ./wordpress-3.4/.git/objects/f5/9674908931d8c67ec8504970fac7f3f795d733 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/f5/9674908931d8c67ec8504970fac7f3f795d733 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - x}�AK1�=�W�m�K�Uы�,.xX��1d�� �٘���7���z���y���8������=���A�>gh - r2��Mt*(iY�� ��X�45��JN�� ���+��k㔍�����_�q4������p��y���c�}@ʩ�PN�����Hd�I��K!6�ۋ�%)�H�"�����:ھ{��9�֞?؝��-�w4�����{�n_�_�H��Ά� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/f5/d2a3eeb0a276621a942ddd635fc17eaca61c5a and ./wordpress-3.4.1/.git/objects/f5/d2a3eeb0a276621a942ddd635fc17eaca61c5a differ Binary files ./wordpress-3.4/.git/objects/f6/34be02bd922ca61faab8b767a13c888cb4675d and ./wordpress-3.4.1/.git/objects/f6/34be02bd922ca61faab8b767a13c888cb4675d differ Binary files ./wordpress-3.4/.git/objects/f6/4e35417d85b0a198b3db1220648e1f0100b25b and ./wordpress-3.4.1/.git/objects/f6/4e35417d85b0a198b3db1220648e1f0100b25b differ Binary files ./wordpress-3.4/.git/objects/f6/9c9382b568d94328875e7405e8e64bfb67a3f9 and ./wordpress-3.4.1/.git/objects/f6/9c9382b568d94328875e7405e8e64bfb67a3f9 differ Binary files ./wordpress-3.4/.git/objects/f6/ac9c2e08df92e73099ed30220389e9f4c8589f and ./wordpress-3.4.1/.git/objects/f6/ac9c2e08df92e73099ed30220389e9f4c8589f differ Binary files ./wordpress-3.4/.git/objects/f7/4ed039a2eb49746f4e2c6b42854d2dad28149a and ./wordpress-3.4.1/.git/objects/f7/4ed039a2eb49746f4e2c6b42854d2dad28149a differ Binary files ./wordpress-3.4/.git/objects/f7/f57927307a9505280398e2c0e9e78b034b36a6 and ./wordpress-3.4.1/.git/objects/f7/f57927307a9505280398e2c0e9e78b034b36a6 differ Binary files ./wordpress-3.4/.git/objects/f8/07fcf2c5eea37c682cf4b14d1fb58eef2e5339 and ./wordpress-3.4.1/.git/objects/f8/07fcf2c5eea37c682cf4b14d1fb58eef2e5339 differ Binary files ./wordpress-3.4/.git/objects/f8/59d24e6a6788d5890a02f76f96c81ff2749580 and ./wordpress-3.4.1/.git/objects/f8/59d24e6a6788d5890a02f76f96c81ff2749580 differ Binary files ./wordpress-3.4/.git/objects/f8/646287474ef8b7d7ae09ed154083ceea2bb8f8 and ./wordpress-3.4.1/.git/objects/f8/646287474ef8b7d7ae09ed154083ceea2bb8f8 differ Binary files ./wordpress-3.4/.git/objects/f8/ad22383aa716922cef904a151cadcc001e033d and ./wordpress-3.4.1/.git/objects/f8/ad22383aa716922cef904a151cadcc001e033d differ Binary files ./wordpress-3.4/.git/objects/f8/b17602e31fe5e7bf9e9bed2dcd763afae51a27 and ./wordpress-3.4.1/.git/objects/f8/b17602e31fe5e7bf9e9bed2dcd763afae51a27 differ Binary files ./wordpress-3.4/.git/objects/f8/f08c87e7c31e38d6c1b87f775c40a814f68b60 and ./wordpress-3.4.1/.git/objects/f8/f08c87e7c31e38d6c1b87f775c40a814f68b60 differ Binary files ./wordpress-3.4/.git/objects/f9/3f2a429c7c3c1ca92fbfce67f3b742b0a2f03d and ./wordpress-3.4.1/.git/objects/f9/3f2a429c7c3c1ca92fbfce67f3b742b0a2f03d differ Binary files ./wordpress-3.4/.git/objects/f9/55f3499142b5859002c406e35d022314c59d93 and ./wordpress-3.4.1/.git/objects/f9/55f3499142b5859002c406e35d022314c59d93 differ Binary files ./wordpress-3.4/.git/objects/f9/749a77ba42d2326438d9ed7139d60126ccc174 and ./wordpress-3.4.1/.git/objects/f9/749a77ba42d2326438d9ed7139d60126ccc174 differ Binary files ./wordpress-3.4/.git/objects/f9/b624be92ad5b03cb04ac6fd3434f3fcacb476a and ./wordpress-3.4.1/.git/objects/f9/b624be92ad5b03cb04ac6fd3434f3fcacb476a differ Binary files ./wordpress-3.4/.git/objects/fa/1feb32f49df9824b8e8d048371bbdfe330a6c2 and ./wordpress-3.4.1/.git/objects/fa/1feb32f49df9824b8e8d048371bbdfe330a6c2 differ Binary files ./wordpress-3.4/.git/objects/fa/62d88964d88f840b04c6feca0db5a24e608a1c and ./wordpress-3.4.1/.git/objects/fa/62d88964d88f840b04c6feca0db5a24e608a1c differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/fa/8da05b0d0b857767b167bc43988b003414509d ./wordpress-3.4.1/.git/objects/fa/8da05b0d0b857767b167bc43988b003414509d *** ./wordpress-3.4/.git/objects/fa/8da05b0d0b857767b167bc43988b003414509d 2012-06-13 16:59:59.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/fa/8da05b0d0b857767b167bc43988b003414509d 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - x+)JMU0402`040031QH���/*�M�I,.�L�K..f��X�L����`���l_�'L��]uJjX�v>��N��y�|Q��o'f$F�EՑV�Z�V��k��A�TV ���|���m��Z�� ���r�z�l?��^by�+�?�ԗ���fV��&�������m��0�"�ͼұ=ƽ=��g隍����'�w��V,���6cyR���,%�:�vMq?cW�z���핂Q�6���aTƭfτ�U��-�mn2Y�?�����Q���Ģ����h|��<po5�����Ǹ���{��*3S�>v��}���b� {��k��Ω����,fZ�T�����c�_��)���U�}�Ɲ�Ӊ �dr����~��_~� - �9�Cێ,�<c�۵M� �?����a��Ks Q!ᙹ���M�CP�\n������Д�L�^������ղ�0 V0C�榦d&�=��m��-g�::뎽(�*�P3���͚��n��#�l�����N#+{Y]��k�}�}��;��w��FQ3Mec����K�!9���[�[~O�*,/�ML��̃;�f]�X��'�lO'*��g�^��Z��-���N�c>k^@�z�3O�����ԃk�4�Wm9�S��|*V�$�]���\s�v>>�{F�Kޙob��, \ No newline at end of file --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/fa/ba84d0128f31cd3551f685fa343b6552d825a3 ./wordpress-3.4.1/.git/objects/fa/ba84d0128f31cd3551f685fa343b6552d825a3 *** ./wordpress-3.4/.git/objects/fa/ba84d0128f31cd3551f685fa343b6552d825a3 2012-06-13 16:59:55.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/fa/ba84d0128f31cd3551f685fa343b6552d825a3 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - xU�;�0���+�:$<���sd`A��i"Q���U�:���,[���V���5���dP�=h�$� - �^+��kB� Yphu˓>[�7�4<ȫ��!����'�[k��/�,X�WB�O�� ND17pY�3^?)�̡�o��',�l�qQ_���IO� \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/fa/cae8a86d33c443f0493e92eed7140ae5cf0019 and ./wordpress-3.4.1/.git/objects/fa/cae8a86d33c443f0493e92eed7140ae5cf0019 differ Binary files ./wordpress-3.4/.git/objects/fa/f387032d791c708bf665653c9686260bdff2ad and ./wordpress-3.4.1/.git/objects/fa/f387032d791c708bf665653c9686260bdff2ad differ Binary files ./wordpress-3.4/.git/objects/fb/1f1ee0c275753f0ef986a1278b49b88db76fe7 and ./wordpress-3.4.1/.git/objects/fb/1f1ee0c275753f0ef986a1278b49b88db76fe7 differ Binary files ./wordpress-3.4/.git/objects/fb/4b50330a35c8db2668cb17e9db05f3591d83c7 and ./wordpress-3.4.1/.git/objects/fb/4b50330a35c8db2668cb17e9db05f3591d83c7 differ Binary files ./wordpress-3.4/.git/objects/fc/0b39437c45e12218bc85c1e6825af00eb092f4 and ./wordpress-3.4.1/.git/objects/fc/0b39437c45e12218bc85c1e6825af00eb092f4 differ Binary files ./wordpress-3.4/.git/objects/fc/218a24f32b9676cf1fdd5610107cd59df7a9d8 and ./wordpress-3.4.1/.git/objects/fc/218a24f32b9676cf1fdd5610107cd59df7a9d8 differ Binary files ./wordpress-3.4/.git/objects/fc/241359f630a73be83e4a76d214d99a02c8d7c2 and ./wordpress-3.4.1/.git/objects/fc/241359f630a73be83e4a76d214d99a02c8d7c2 differ Binary files ./wordpress-3.4/.git/objects/fc/9d4f126f10894ea7e8b1edd341857a50138cb9 and ./wordpress-3.4.1/.git/objects/fc/9d4f126f10894ea7e8b1edd341857a50138cb9 differ Binary files ./wordpress-3.4/.git/objects/fc/9f01fe1c3c146abc88f35e413cf50baaf3fd9c and ./wordpress-3.4.1/.git/objects/fc/9f01fe1c3c146abc88f35e413cf50baaf3fd9c differ Binary files ./wordpress-3.4/.git/objects/fc/dd398957b7d3ebd5bca393200e36bce73a1b88 and ./wordpress-3.4.1/.git/objects/fc/dd398957b7d3ebd5bca393200e36bce73a1b88 differ Binary files ./wordpress-3.4/.git/objects/fc/fd80904398d83fcce392ed7ffdda951e224a70 and ./wordpress-3.4.1/.git/objects/fc/fd80904398d83fcce392ed7ffdda951e224a70 differ Binary files ./wordpress-3.4/.git/objects/fd/04898ca5722051df45282b081598b0ebf1d202 and ./wordpress-3.4.1/.git/objects/fd/04898ca5722051df45282b081598b0ebf1d202 differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/fd/587a69d3cc9fa2e7a3c078e8e0f591318167ad ./wordpress-3.4.1/.git/objects/fd/587a69d3cc9fa2e7a3c078e8e0f591318167ad *** ./wordpress-3.4/.git/objects/fd/587a69d3cc9fa2e7a3c078e8e0f591318167ad 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/fd/587a69d3cc9fa2e7a3c078e8e0f591318167ad 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,3 **** - x��Mn�0���O1R6I�IEu�3����a�1UP��� m�h�Z�,?}�yޤ�R8��f�`���-�4�9�.�C )Y��� c�W - �l.ʠD��f��sKm%ch�Y�O�++x - s��`�F�*�ꄝG�[�~�_�� ���V�ŕ����aSr���)Dk�v=\�nD�Pi��� L]��"Ӯ���e�fo�x�JT�J��� #C9WJyJ�z -!�O0�'�.��N���?�ه�����&g�Y� � \ No newline at end of file --- 0 ---- Binary files ./wordpress-3.4/.git/objects/fd/6de7d7a7ab67f5e528a9d4478e0adb9270c3a2 and ./wordpress-3.4.1/.git/objects/fd/6de7d7a7ab67f5e528a9d4478e0adb9270c3a2 differ Binary files ./wordpress-3.4/.git/objects/fd/f3a08f78d67844201c67db6a0104ded87fd254 and ./wordpress-3.4.1/.git/objects/fd/f3a08f78d67844201c67db6a0104ded87fd254 differ Binary files ./wordpress-3.4/.git/objects/fd/f75f15ecd65d6b00fb86e91444664f9ec85852 and ./wordpress-3.4.1/.git/objects/fd/f75f15ecd65d6b00fb86e91444664f9ec85852 differ Binary files ./wordpress-3.4/.git/objects/fd/fe0b9ac05869ae845fdd828eaad97cc0c69dbc and ./wordpress-3.4.1/.git/objects/fd/fe0b9ac05869ae845fdd828eaad97cc0c69dbc differ Binary files ./wordpress-3.4/.git/objects/fe/0c27cffd525e26506b799b574bd264089d434e and ./wordpress-3.4.1/.git/objects/fe/0c27cffd525e26506b799b574bd264089d434e differ Binary files ./wordpress-3.4/.git/objects/fe/20647d5933d863bec87af3d35ade8898ee3d42 and ./wordpress-3.4.1/.git/objects/fe/20647d5933d863bec87af3d35ade8898ee3d42 differ Binary files ./wordpress-3.4/.git/objects/fe/48d85728ff0337f0fb592bb265930c7c183330 and ./wordpress-3.4.1/.git/objects/fe/48d85728ff0337f0fb592bb265930c7c183330 differ Binary files ./wordpress-3.4/.git/objects/fe/5e19bc87e1b6003218dd295845d5a535758e63 and ./wordpress-3.4.1/.git/objects/fe/5e19bc87e1b6003218dd295845d5a535758e63 differ Binary files ./wordpress-3.4/.git/objects/fe/aed5b47246586c51ffcea8a4be6b58c28ec246 and ./wordpress-3.4.1/.git/objects/fe/aed5b47246586c51ffcea8a4be6b58c28ec246 differ Binary files ./wordpress-3.4/.git/objects/ff/0ca4d5dc52cc164e89fdfb96bd5cda2bf35c6f and ./wordpress-3.4.1/.git/objects/ff/0ca4d5dc52cc164e89fdfb96bd5cda2bf35c6f differ Binary files ./wordpress-3.4/.git/objects/ff/1c4ebc29b3da2e3c65f52cfd20ca4fd596ee47 and ./wordpress-3.4.1/.git/objects/ff/1c4ebc29b3da2e3c65f52cfd20ca4fd596ee47 differ Binary files ./wordpress-3.4/.git/objects/ff/1e91dcebda385b51d6974ae2cea95201c93d80 and ./wordpress-3.4.1/.git/objects/ff/1e91dcebda385b51d6974ae2cea95201c93d80 differ Binary files ./wordpress-3.4/.git/objects/ff/4958f11f0a4599de16a95573dd5802da0dd74b and ./wordpress-3.4.1/.git/objects/ff/4958f11f0a4599de16a95573dd5802da0dd74b differ Binary files ./wordpress-3.4/.git/objects/ff/6a9903276f2aab258a89562b009dcaa0df2416 and ./wordpress-3.4.1/.git/objects/ff/6a9903276f2aab258a89562b009dcaa0df2416 differ Binary files ./wordpress-3.4/.git/objects/ff/787167ea275722fb9857cfbda9667110088553 and ./wordpress-3.4.1/.git/objects/ff/787167ea275722fb9857cfbda9667110088553 differ Binary files ./wordpress-3.4/.git/objects/ff/78e83bb3b9b1d3436a07f5523b1add1ae7fcdf and ./wordpress-3.4.1/.git/objects/ff/78e83bb3b9b1d3436a07f5523b1add1ae7fcdf differ Binary files ./wordpress-3.4/.git/objects/ff/ca64c950a1d7b234ec2a7717abd888162e0ee1 and ./wordpress-3.4.1/.git/objects/ff/ca64c950a1d7b234ec2a7717abd888162e0ee1 differ Binary files ./wordpress-3.4/.git/objects/ff/cccbb1508de35aca1116faf1dec228e005efd3 and ./wordpress-3.4.1/.git/objects/ff/cccbb1508de35aca1116faf1dec228e005efd3 differ Binary files ./wordpress-3.4/.git/objects/ff/e08d86ac09c72b9707563729f55caed001869a and ./wordpress-3.4.1/.git/objects/ff/e08d86ac09c72b9707563729f55caed001869a differ diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/objects/ff/ea3a0c1f804b452a8a0060594882ad63081466 ./wordpress-3.4.1/.git/objects/ff/ea3a0c1f804b452a8a0060594882ad63081466 *** ./wordpress-3.4/.git/objects/ff/ea3a0c1f804b452a8a0060594882ad63081466 2012-06-13 16:59:56.000000000 -0500 --- ./wordpress-3.4.1/.git/objects/ff/ea3a0c1f804b452a8a0060594882ad63081466 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,2 **** - x�U�N1�k�+�hU6�TQ���[ }Bt�lf7^{��\����e��ݐ�"�"�!�9s��� 5���6�}�.&E�[Y `2������N��+�!�1I_t��D�c4��J;Q���D��U�k�M,�M���r��O�0�7s�_VaW� �w��;��ұ�Bi�e ���C� ����`o���Dɔg�LkvQ(�x]r��� Fc�%�1���Aw��^��K3M��\�ޡ�\��}�(������xA��� �V=,P�� &WO��Bĩ)ն\,7cE�q�˗�N�Z��6�е��ڗ�̦�f��ЖZ`�z]��p�D�0�7 - ��8���e<��R�ẙ� *�f9�� �p�P*�5XEkhMgcLY)l\��Z��J{q@NU RYHU)��N}\W_@>�M�KW����L,Wҩ=��8ur#��*��r� e�`���R=�l��`x~�a~�4Eg�3�~�&��C��q�B��>a��Z��Ȓ D�q�L=��>��;ڤ�Z�U�N�TcSm3h=R���L�f@�S�ޓeխ���[L@�'U��˙|jد=E܆��YN�3l fi��́H��{7:|S�т�/������\듖Sf'/?>6Q�QG�n�a���~5z!c�4.�_�J��F��s|�5x��z�}������qTfQ��̻2�r��%&i�2��VH]�ɜ�>�֯Hx^�c��W�>��CM�N��T����xE-�w��b�+���o-�9^Q+e����H^�����e \ No newline at end of file --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.git/refs/heads/3.4 ./wordpress-3.4.1/.git/refs/heads/3.4 *** ./wordpress-3.4/.git/refs/heads/3.4 2012-06-13 17:00:00.000000000 -0500 --- ./wordpress-3.4.1/.git/refs/heads/3.4 1969-12-31 18:00:00.000000000 -0600 *************** *** 1 **** - ed5bf76e45912ac97b2bcd2616610e03cdda406d --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/.htaccess ./wordpress-3.4.1/.htaccess *** ./wordpress-3.4/.htaccess 2012-06-13 16:54:20.000000000 -0500 --- ./wordpress-3.4.1/.htaccess 1969-12-31 18:00:00.000000000 -0600 *************** *** 1,9 **** - # BEGIN WordPress - <IfModule mod_rewrite.c> - RewriteEngine On - RewriteBase / - RewriteCond %{REQUEST_FILENAME} !-f - RewriteCond %{REQUEST_FILENAME} !-d - RewriteRule . /index.php [L] - </IfModule> - # END WordPress --- 0 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/readme.html ./wordpress-3.4.1/readme.html *** ./wordpress-3.4/readme.html 2012-04-27 14:39:35.000000000 -0500 --- ./wordpress-3.4.1/readme.html 2012-06-26 16:54:32.000000000 -0500 *************** *** 8,14 **** <body> <h1 id="logo"> <a href="http://wordpress.org/"><img alt="WordPress" src="wp-admin/images/wordpress-logo.png" /></a> ! <br /> Version 3.4 </h1> <p style="text-align: center">Semantic Personal Publishing Platform</p> --- 8,14 ---- <body> <h1 id="logo"> <a href="http://wordpress.org/"><img alt="WordPress" src="wp-admin/images/wordpress-logo.png" /></a> ! <br /> Version 3.4.1 </h1> <p style="text-align: center">Semantic Personal Publishing Platform</p> diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-admin/about.php ./wordpress-3.4.1/wp-admin/about.php *** ./wordpress-3.4/wp-admin/about.php 2012-06-01 20:16:35.000000000 -0500 --- ./wordpress-3.4.1/wp-admin/about.php 2012-06-27 14:29:16.000000000 -0500 *************** *** 33,38 **** --- 33,46 ---- </a> </h2> + <div class="changelog point-releases"> + <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 1 ); ?></h3> + <p><?php printf( _n( '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', + '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', 21 ), '3.4.1', number_format_i18n( 21 ) ); ?> + <?php printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'http://codex.wordpress.org/Version_3.4.1' ); ?> + </p> + </div> + <div class="changelog"> <h3><?php _e( 'Live Theme Previews' ); ?></h3> diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-admin/css/wp-admin.css ./wordpress-3.4.1/wp-admin/css/wp-admin.css *** ./wordpress-3.4/wp-admin/css/wp-admin.css 2012-06-12 12:58:23.000000000 -0500 --- ./wordpress-3.4.1/wp-admin/css/wp-admin.css 2012-06-26 16:51:24.000000000 -0500 *************** *** 1 **** ! #wpwrap{height:auto;min-height:100%;width:100%;position:relative}#wpcontent{height:100%}#wpcontent,#footer{margin-left:165px}.folded #wpcontent,.folded #footer{margin-left:52px}#wpbody-content{padding-bottom:65px;float:left;width:100%}#adminmenuback,#adminmenuwrap,#adminmenu,#adminmenu .wp-submenu,#adminmenu .wp-submenu-wrap,.folded #adminmenu .wp-has-current-submenu .wp-submenu{width:145px}#adminmenuback{position:absolute;top:0;bottom:0;z-index:-1}#adminmenu{clear:left;margin:0;padding:0;list-style:none}.folded #adminmenuback,.folded #adminmenuwrap,.folded #adminmenu,.folded #adminmenu li.menu-top{width:32px}.inner-sidebar{float:right;clear:right;display:none;width:281px;position:relative}.columns-2 .inner-sidebar{margin-right:auto;width:286px;display:block}.inner-sidebar #side-sortables,.columns-2 .inner-sidebar #side-sortables{min-height:300px;width:280px;padding:0}.has-right-sidebar .inner-sidebar{display:block}.has-right-sidebar #post-body{float:left;clear:left;width:100%;margin-right:-2000px}.has-right-sidebar #post-body-content{margin-right:300px;float:none;width:auto}#col-container,#col-left,#col-right{overflow:hidden;padding:0;margin:0}#col-left{width:35%}#col-right{float:right;clear:right;width:65%}.col-wrap{padding:0 7px}.alignleft{float:left}.alignright{float:right}.textleft{text-align:left}.textright{text-align:right}.clear{clear:both}.screen-reader-text,.screen-reader-text span{position:absolute;left:-1000em;height:1px;width:1px;overflow:hidden}.hidden,.js .closed .inside,.js .hide-if-js,.no-js .hide-if-no-js{display:none}input[type="text"],input[type="password"],input[type="number"],input[type="search"],input[type="email"],input[type="url"],textarea{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}input[type="checkbox"],input[type="radio"]{vertical-align:text-top;padding:0;margin:1px 0 0}input[type="search"]{-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration{display:none}html,body{height:100%;margin:0;padding:0}body{font-family:sans-serif;font-size:12px;line-height:1.4em;min-width:600px}body.iframe{min-width:0}body.login{background:#fbfbfb;min-width:0}iframe,img{border:0}td,textarea,input,select{font-family:inherit;font-size:inherit;font-weight:inherit}td,textarea{line-height:inherit}input,select{line-height:15px}a,input,select{outline:0}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}p{margin:1em 0}blockquote{margin:1em}label{cursor:pointer}li,dd{margin-bottom:6px}textarea,input,select{margin:1px;padding:3px}h1,h2,h3,h4,h5,h6{display:block;font-weight:bold}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}ul,ol{padding:0}ul{list-style:none}ol{list-style-type:decimal;margin-left:2em}ul.ul-disc{list-style:disc outside}ul.ul-square{list-style:square outside}ol.ol-decimal{list-style:decimal outside}ul.ul-disc,ul.ul-square,ol.ol-decimal{margin-left:1.8em}ul.ul-disc>li,ul.ul-square>li,ol.ol-decimal>li{margin:0 0 .5em}.code,code{font-family:Consolas,Monaco,monospace}kbd,code{padding:1px 3px;margin:0 1px;font-size:11px}.subsubsub{list-style:none;margin:8px 0 5px;padding:0;white-space:nowrap;font-size:12px;float:left}.subsubsub a{line-height:2;padding:.2em;text-decoration:none}.subsubsub a .count,.subsubsub a.current .count{color:#999;font-weight:normal}.subsubsub a.current{font-weight:bold;background:0;border:0}.subsubsub li{display:inline;margin:0;padding:0}.widefat,div.updated,div.error,.wrap .add-new-h2,textarea,input[type="text"],input[type="password"],input[type="file"],input[type="button"],input[type="submit"],input[type="reset"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select,.tablenav .tablenav-pages a,.tablenav-pages span.current,#titlediv #title,.postbox,#postcustomstuff table,#postcustomstuff input,#postcustomstuff textarea,.imgedit-menu div,.plugin-update-tr .update-message,#poststuff .inside .the-tagcloud,.login form,#login_error,.login .message,#menu-management .menu-edit,.nav-menus-php .list-container,.menu-item-handle,.link-to-original,.nav-menus-php .major-publishing-actions .form-invalid,.press-this #message,#TB_window,.tbtitle,.highlight,.feature-filter,#widget-list .widget-top,.editwidget .widget-inside{-webkit-border-radius:3px;border-radius:3px;border-width:1px;border-style:solid}.widefat{border-spacing:0;width:100%;clear:both;margin:0}.widefat *{word-wrap:break-word}.widefat a{text-decoration:none}.widefat thead th:first-of-type{-webkit-border-top-left-radius:3px;border-top-left-radius:3px}.widefat thead th:last-of-type{-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.widefat tfoot th:first-of-type{-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.widefat tfoot th:last-of-type{-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.widefat td,.widefat th{border-width:1px 0;border-style:solid}.widefat tfoot th{border-bottom:0}.widefat .no-items td{border-bottom-width:0}.widefat td{font-size:12px;padding:4px 7px 2px;vertical-align:top}.widefat td p,.widefat td ol,.widefat td ul{font-size:12px}.widefat th{padding:7px 7px 8px;text-align:left;line-height:1.3em;font-size:14px}.widefat th input{margin:0 0 0 8px;padding:0;vertical-align:text-top}.widefat .check-column{width:2.2em;padding:11px 0 0;vertical-align:top}.widefat tbody th.check-column{padding:9px 0 22px}.widefat .num,.column-comments,.column-links,.column-posts{text-align:center}.widefat th#comments{vertical-align:middle}.wrap{margin:4px 15px 0 0}div.updated,div.error{padding:0 .6em;margin:5px 15px 2px}div.updated p,div.error p{margin:.5em 0;padding:2px}.wrap div.updated,.wrap div.error,.media-upload-form div.error{margin:5px 0 15px}.wrap h2,.subtitle{font-weight:normal;margin:0;text-shadow:#fff 0 1px 0}.wrap h2{font-size:23px;padding:9px 15px 4px 0;line-height:29px}.subtitle{font-size:14px;padding-left:25px}.wrap .add-new-h2{font-family:sans-serif;margin-left:4px;padding:3px 8px;position:relative;top:-3px;text-decoration:none;font-size:12px;border:0 none}.wrap h2.long-header{padding-right:0}div.sidebar-name h3,#menu-management .nav-tab,#dashboard_plugins h5,a.rsswidget,#dashboard_right_now td.b,#dashboard-widgets h4,.tool-box .title,#poststuff h3,.metabox-holder h3,.pressthis a,#your-profile legend,.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title,.tablenav .displaying-num,.widefat th,.quicktags,.search{font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif}h2 .nav-tab,.wrap h2,.subtitle,.login form .input{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif}.quicktags,.search{font-size:12px}.icon32{float:left;height:34px;margin:7px 8px 0 0;width:36px}.icon16{height:18px;width:18px;padding:6px 6px;margin:-6px 0 0 -8px;float:left}.key-labels label{line-height:24px}.pre{white-space:pre-wrap;white-space:-moz-pre-wrap!important;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}.howto{font-style:italic;display:block;font-family:sans-serif}p.install-help{margin:8px 0;font-style:italic}.no-break{white-space:nowrap}.wp-admin select{padding:2px;height:2em}.wp-admin select[multiple]{height:auto}select option{padding:2px}.submit{padding:1.5em 0;margin:5px 0;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}form p.submit a.cancel:hover{text-decoration:none}.submit input,.button,input.button,.button-primary,input.button-primary,.button-secondary,input.button-secondary,.button-highlighted,input.button-highlighted,#postcustomstuff .submit input{text-decoration:none;font-size:12px!important;line-height:13px;padding:3px 8px;cursor:pointer;border-width:1px;border-style:solid;-webkit-border-radius:11px;border-radius:11px;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}#minor-publishing-actions input,#major-publishing-actions input,#minor-publishing-actions .preview{min-width:80px;text-align:center}textarea.all-options,input.all-options{width:250px}input.large-text,textarea.large-text{width:99%}input.regular-text,#adduser .form-field input{width:25em}input.small-text{width:50px}input[type="number"].small-text{width:60px}#doaction,#doaction2,#post-query-submit{margin-right:8px}.tablenav select[name="action"],.tablenav select[name="action2"]{width:130px}.tablenav select[name="m"]{width:155px}.tablenav select#cat{width:170px}#wpcontent option{padding:2px}#timezone_string option{margin-left:1em}label,#your-profile label+a{vertical-align:middle}#misc-publishing-actions label{vertical-align:baseline}#pass-strength-result{border-style:solid;border-width:1px;float:left;margin:13px 5px 5px 1px;padding:3px 5px;text-align:center;width:200px;display:none}.indicator-hint{padding-top:8px}p.search-box{float:right;margin:0}input[type="text"].ui-autocomplete-loading{background:transparent url('../images/loading.gif') no-repeat right center;visibility:visible}ul#add-to-blog-users{margin:0 0 0 14px}.ui-autocomplete-input.open{border-bottom-right-radius:0;border-bottom-left-radius:0}.ui-autocomplete{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-width:1px;border-style:solid}.ui-autocomplete li{margin-bottom:0;white-space:nowrap;text-align:left}.ui-autocomplete li a{display:block;height:100%;padding:4px 10px}.ui-autocomplete li a.ui-state-hover{cursor:pointer}#major-publishing-actions{padding:10px 10px 8px;clear:both;border-top:1px solid #f5f5f5;margin-top:-2px}#delete-action{line-height:25px;vertical-align:middle;text-align:left;float:left}#publishing-action{text-align:right;float:right;line-height:23px}#misc-publishing-actions{padding:6px 0 0}.misc-pub-section{padding:6px 10px 8px;border-width:1px 0;border-style:solid}.misc-pub-section:first-child{border-top-width:0}.misc-pub-section-last{border-bottom-width:0}#minor-publishing-actions{padding:10px 10px 2px 8px;text-align:right}#minor-publishing{border-bottom-width:1px;border-bottom-style:solid;-webkit-box-shadow:0 1px 0 #fff;-moz-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff}#save-post{float:left}#minor-publishing .ajax-loading{padding:3px 0 0 4px;float:left}.preview{float:right}#sticky-span{margin-left:18px}.side-info{margin:0;padding:4px;font-size:11px}.side-info h5{padding-bottom:7px;font-size:14px;margin:12px 2px 5px;border-bottom-width:1px;border-bottom-style:solid}.side-info ul{margin:0;padding-left:18px;list-style:square}a.button,a.button-primary,a.button-secondary{line-height:15px;padding:3px 10px;white-space:nowrap;-webkit-border-radius:10px}.approve,.unapproved .unapprove{display:none}.unapproved .approve,.spam .approve,.trash .approve{display:inline}td.action-links,th.action-links{text-align:right}.describe .del-link{padding-left:5px}#update-nag,.update-nag{line-height:19px;padding:5px 0;font-size:12px;text-align:center;margin:-1px 15px 0 5px;border-width:1px;border-style:solid;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.plugins .plugin-update{padding:0}.plugin-update .update-message{margin:0 10px 8px 31px;font-weight:bold}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0}.ajax-feedback{visibility:hidden;vertical-align:bottom}#ajax-response.alignleft{margin-left:2em}#adminmenu a,#sidemenu a,#taglist a,#catlist a{text-decoration:none}#screen-options-wrap,#contextual-help-wrap{margin:0;padding:8px 20px 12px;position:relative;overflow:auto}#screen-meta .screen-reader-text{visibility:hidden}#screen-meta-links{margin:0 24px 0 0}#screen-meta{display:none;position:relative;margin:0 15px 0 5px;border-width:0 1px 1px;border-style:none solid solid}#screen-options-link-wrap,#contextual-help-link-wrap{float:right;height:23px;padding:0;margin:0 0 0 6px;font-family:sans-serif}#screen-options-link-wrap,#contextual-help-link-wrap,#screen-meta{-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}#screen-meta-links .screen-meta-toggle{position:relative;top:-1px}#screen-meta-links a.show-settings{text-decoration:none;z-index:1;padding:1px 16px 0 6px;height:22px;line-height:22px;font-size:12px;display:block;text-shadow:rgba(255,255,255,0.7) 0 1px 0}#screen-meta-links a.show-settings:hover{text-decoration:none}.toggle-arrow{background-repeat:no-repeat;background-position:top left;background-color:transparent;height:22px;line-height:22px;display:block}.toggle-arrow-active{background-position:bottom left}#screen-options-wrap h5,#contextual-help-wrap h5{margin:8px 0;font-size:13px}.metabox-prefs label{display:inline-block;padding-right:15px;white-space:nowrap;line-height:30px}.metabox-prefs label input{margin:0 5px 0 2px}.metabox-prefs .columns-prefs label input{margin:0 2px}.metabox-prefs label a{display:none}#contextual-help-wrap{padding:0;margin-left:-4px}#contextual-help-columns{position:relative}#contextual-help-back{position:absolute;top:0;bottom:0;left:150px;right:170px;border-width:0 1px;border-style:solid}#contextual-help-wrap.no-sidebar #contextual-help-back{right:0;border-right-width:0;-webkit-border-bottom-right-radius:2px;border-bottom-right-radius:2px}.contextual-help-tabs{float:left;width:150px;margin:0}.contextual-help-tabs ul{margin:1em 0}.contextual-help-tabs li{margin-bottom:0;list-style-type:none;border-style:solid;border-width:1px 0;border-color:transparent}.contextual-help-tabs a{display:block;padding:5px 5px 5px 12px;line-height:18px;text-decoration:none}.contextual-help-tabs .active{padding:0;margin:0 -1px 0 0;border-width:1px 0 1px 1px;border-style:solid}.contextual-help-tabs-wrap{padding:0 20px;overflow:auto}.help-tab-content{display:none;margin:0 22px 12px 0;line-height:1.6em}.help-tab-content.active{display:block}.help-tab-content li{list-style-type:disc;margin-left:18px}.contextual-help-sidebar{width:150px;float:right;padding:0 8px 0 12px;overflow:auto}#adminmenuback,#adminmenuwrap{border-width:0 1px 0 0;border-style:solid}#adminmenuwrap{position:relative;float:left}#adminmenushadow{position:absolute;top:0;right:0;bottom:0;width:6px;z-index:20}#adminmenu *{-webkit-user-select:none;-moz-user-select:none;user-select:none}#adminmenu .wp-submenu{list-style:none;padding:0;margin:0;overflow:hidden}#adminmenu li .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{display:none;position:absolute;top:-1px;left:146px;z-index:999;overflow:hidden}.js #adminmenu .wp-submenu.sub-open,.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.no-js #adminmenu .wp-has-submenu:hover .wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu li.focused .wp-submenu{display:block}#adminmenu .wp-has-current-submenu .wp-submenu{position:relative;z-index:2;top:auto;left:auto;right:auto;bottom:auto;padding:0}#adminmenu .wp-has-current-submenu .wp-submenu-wrap{-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.folded #adminmenu .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{top:-5px;left:26px}#adminmenu .wp-submenu.sub-open,#adminmenu li.focused.wp-not-current-submenu .wp-submenu,.folded #adminmenu li.focused.wp-has-current-submenu .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.no-js #adminmenu .wp-has-submenu:hover .wp-submenu,.no-js.folded #adminmenu .wp-has-current-submenu:hover .wp-submenu{padding:0 8px 8px 0}.no-js #adminmenu .wp-has-current-submenu:hover .wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu{padding:0}#adminmenu .wp-submenu a{font-size:12px;line-height:18px}#adminmenu a.menu-top,#adminmenu .wp-submenu-head{font-size:13px;line-height:18px}#adminmenu div.wp-submenu-head{display:none}.folded #adminmenu div.wp-submenu-head{display:block}.folded #adminmenu a.menu-top,body.no-js #adminmenu .wp-menu-toggle,.folded #adminmenu div.wp-menu-toggle{display:none}#adminmenu div.wp-menu-image{float:left;width:28px;height:28px}.folded #adminmenu div.wp-menu-image{width:30px}#adminmenu li{margin:0;padding:0;cursor:pointer}#adminmenu a{display:block;line-height:18px;padding:2px 5px}#adminmenu li.menu-top{min-height:29px;position:relative}#adminmenu a.menu-top{font-weight:bold;line-height:18px;min-width:10em;padding:5px 5px;border-width:1px 0 1px;border-style:solid}#adminmenu li.wp-menu-open{border-width:0 0 1px;border-style:solid}#adminmenu .wp-submenu ul{padding:4px 0}#adminmenu .wp-submenu a{margin:0}#adminmenu li li{margin-left:8px}#adminmenu .wp-submenu a,#adminmenu li li a,.folded #adminmenu .wp-not-current-submenu li a{padding-left:12px}#adminmenu .wp-not-current-submenu li a{padding-left:18px}.folded #adminmenu li li{margin-left:0}.folded #adminmenu li li a{padding-left:0}.wp-menu-arrow{display:none;cursor:auto;z-index:25;position:absolute;right:100%;margin:0;height:30px;width:6px;-moz-transform:translate(146px);-webkit-transform:translate(146px);-o-transform:translate(146px);-ms-transform:translate(146px);transform:translate(146px)}#adminmenu li.wp-has-current-submenu .wp-menu-arrow,#adminmenu li.menu-top:hover .wp-menu-arrow,#adminmenu li.current .wp-menu-arrow,#adminmenu li.focused .wp-menu-arrow,#adminmenu li.menu-top.wp-has-submenu:hover .wp-menu-arrow div{display:block}#adminmenu li.wp-not-current-submenu:hover .wp-menu-arrow div{display:none}#adminmenu li.menu-top:hover .wp-menu-arrow,#adminmenu li.menu-top.focused .wp-menu-arrow{z-index:1001}.ie8 #adminmenu li.menu-top:hover .wp-menu-arrow{display:none}#adminmenu .wp-menu-arrow div{position:absolute;top:7px;left:-1px;width:14px;height:15px;-moz-transform:matrix(-0.6,1,0.6,1,0,0);-webkit-transform:matrix(-0.6,1,0.6,1,0,0);-o-transform:matrix(-0.6,1,0.6,1,0,0);-ms-transform:matrix(-0.6,1,0.6,1,0,0);transform:matrix(-0.6,1,0.6,1,0,0)}#adminmenu li.wp-not-current-submenu .wp-menu-arrow{-moz-transform:translate(145px);-webkit-transform:translate(145px);-o-transform:translate(145px);-ms-transform:translate(145px);transform:translate(145px);height:28px;border-width:1px 0;border-style:solid}.folded .wp-menu-arrow{-moz-transform:translate(33px);-webkit-transform:translate(33px);-o-transform:translate(33px);-ms-transform:translate(33px);transform:translate(33px)}#adminmenu .wp-not-current-submenu .wp-menu-arrow div{width:15px;top:6px;border-width:0 0 1px 1px;border-style:solid}.wp-menu-arrow,.folded #adminmenu li.menu-top:hover .wp-menu-arrow{display:none}.folded #adminmenu li.current:hover .wp-menu-arrow,.folded #adminmenu li.menu-top.wp-menu-open:hover .wp-menu-arrow{display:block;z-index:125}#adminmenu .wp-submenu li{padding:0;margin:0}.folded #adminmenu li.menu-top{border-width:1px 0;border-style:solid none}#adminmenu .wp-menu-image img{float:left;padding:5px 0 0 2px;opacity:.6;filter:alpha(opacity=60)}#adminmenu li.menu-top:hover .wp-menu-image img,#adminmenu li.wp-has-current-submenu .wp-menu-image img{opacity:1;filter:alpha(opacity=100)}#adminmenu li.wp-menu-separator{height:3px;padding:0;margin:0;border-width:1px 0;border-style:solid;cursor:inherit}#adminmenu div.separator{height:1px;padding:0;border-width:1px 0 0 0;border-style:solid}#adminmenu .wp-submenu .wp-submenu-head{padding:6px 4px 5px 10px;cursor:default;border-width:1px 0;border-style:solid}#adminmenu li .wp-submenu-wrap{border-width:1px 1px 1px 0;border-style:solid solid solid none;position:relative;-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}#adminmenu li.wp-menu-open .wp-submenu-wrap{border:0 none}.folded #adminmenu .wp-submenu .wp-submenu-wrap{margin-top:3px}.folded #adminmenu .wp-has-current-submenu{margin-bottom:1px}.folded #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}.folded #adminmenu .wp-has-current-submenu .wp-submenu-wrap{margin-top:4px}.folded #adminmenu .wp-submenu ul{border-width:0 0 0 1px;border-style:solid}.folded #adminmenu .wp-submenu a{padding-left:10px}.folded #adminmenu a.wp-has-submenu{margin-left:40px}#adminmenu .wp-menu-toggle{width:18px;clear:right;float:right;margin:1px 0 0;height:27px;padding:1px 2px 0 0;cursor:pointer}#adminmenu .wp-menu-image a{height:24px}#adminmenu .awaiting-mod,#adminmenu span.update-plugins,#sidemenu li a span.update-plugins{position:absolute;font-family:sans-serif;font-size:9px;line-height:17px;font-weight:bold;margin-top:1px;margin-left:7px;-webkit-border-radius:10px;border-radius:10px}#adminmenu li .awaiting-mod span,#adminmenu li span.update-plugins span,#sidemenu li a span.update-plugins span{display:block;padding:0 6px}#adminmenu li span.count-0,#sidemenu li a .count-0{display:none}#collapse-menu{font-size:12px;line-height:34px}.folded #collapse-menu span{display:none}#collapse-button,#collapse-button div{width:15px;height:15px}#collapse-button{float:left;margin:8px 6px;border-width:1px;border-style:solid;-webkit-border-radius:10px;border-radius:10px}@media only screen and (max-width:900px){#wpcontent,#footer{margin-left:52px}#adminmenuback,#adminmenuwrap,#adminmenu,#adminmenu li.menu-top{width:32px}#adminmenu .wp-has-current-submenu .wp-submenu{display:none;position:absolute;width:145px;z-index:999;overflow:hidden}#adminmenu .wp-has-current-submenu .wp-submenu.sub-open{display:block}#adminmenu li .wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu{top:-5px;left:26px}#adminmenu li.focused.wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu.sub-open{padding:0 8px 8px 0}#adminmenu div.wp-submenu-head{display:block}#adminmenu a.menu-top,#adminmenu div.wp-menu-toggle{display:none}#adminmenu div.wp-menu-image{width:30px}#adminmenu .wp-not-current-submenu li a{padding-left:12px}#adminmenu li li{margin-left:0}#adminmenu li li a{padding-left:0}.wp-menu-arrow{-moz-transform:translate(33px);-webkit-transform:translate(33px);-o-transform:translate(33px);-ms-transform:translate(33px);transform:translate(33px)}#adminmenu li.menu-top:hover .wp-menu-arrow{display:none}#adminmenu li.current:hover .wp-menu-arrow,#adminmenu li.menu-top.wp-menu-open:hover .wp-menu-arrow{display:block;z-index:125}#adminmenu li.menu-top{border-width:1px 0;border-style:solid none}#adminmenu .wp-submenu .wp-submenu-wrap{margin-top:3px}#adminmenu .wp-has-current-submenu{margin-bottom:1px}#adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}#adminmenu .wp-has-current-submenu .wp-submenu-wrap{margin-top:4px}#adminmenu .wp-submenu ul{border-width:0 0 0 1px;border-style:solid}#adminmenu .wp-submenu a{padding-left:10px}#adminmenu a.wp-has-submenu{margin-left:40px}#collapse-menu{display:none}}.post-com-count-wrapper{min-width:22px;font-family:sans-serif}.post-com-count{height:1.3em;line-height:1.1em;display:block;text-decoration:none;padding:0 0 6px;cursor:pointer;background-position:center -80px;background-repeat:no-repeat}.post-com-count span{font-size:11px;font-weight:bold;height:1.4em;line-height:1.4em;min-width:.7em;padding:0 6px;display:inline-block;-webkit-border-radius:5px;border-radius:5px}strong .post-com-count{background-position:center -55px}.post-com-count:hover{background-position:center -3px}.column-response .post-com-count{float:left;margin-right:5px;text-align:center}.response-links{float:left}#the-comment-list .attachment-80x60{padding:4px 8px}html.wp-toolbar{padding-top:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.narrow{width:70%;margin-bottom:40px}.narrow p{line-height:150%}.widefat th,.widefat td{overflow:hidden}.widefat th{font-weight:normal}.widefat td p{margin:2px 0 .8em}.widefat .column-comment p{margin:.6em 0}.postbox-container{float:left}#dashboard-widgets.columns-1 .postbox-container{width:100%}#dashboard-widgets.columns-2 .postbox-container{width:49.5%}#dashboard-widgets.columns-2 #postbox-container-2,#dashboard-widgets.columns-2 #postbox-container-3,#dashboard-widgets.columns-2 #postbox-container-4{float:right;width:50.5%}#dashboard-widgets.columns-3 .postbox-container{width:33.5%}#dashboard-widgets.columns-3 #postbox-container-1{width:33%}#dashboard-widgets.columns-3 #postbox-container-3,#dashboard-widgets.columns-3 #postbox-container-4{float:right}#dashboard-widgets.columns-4 .postbox-container{width:25%}.postbox-container .meta-box-sortables{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.postbox-container .meta-box-sortables:empty{min-height:0;height:0}.metabox-holder .postbox-container .empty-container,#post-body.columns-2 #side-sortables:empty{border:3px dashed #ccc;height:250px}.metabox-holder.columns-1 .postbox-container .empty-container,.columns-2 #postbox-container-3 .empty-container,.columns-2 #postbox-container-4 .empty-container,.columns-3 #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#poststuff{padding-top:10px}#poststuff #post-body{padding:0}#post-body-content{width:100%;float:left}#poststuff .postbox-container{width:100%}#poststuff #post-body.columns-2{margin-right:300px}#post-body.columns-2 #postbox-container-1{float:right;margin-right:-300px;width:280px}#post-body.columns-2 #side-sortables{min-height:250px}@media only screen and (max-width:799px){#wpbody-content #dashboard-widgets .postbox-container{width:100%}#wpbody-content .metabox-holder .postbox-container .empty-container{border:0 none;height:0;min-height:0}}@media only screen and (min-width:800px) and (max-width:1200px){#wpbody-content #dashboard-widgets .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets #postbox-container-2,#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:right;width:50.5%}#dashboard-widgets.metabox-holder .postbox-container .empty-container,#dashboard-widgets #postbox-container-3 .empty-container,#dashboard-widgets #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container{border:0 none;height:0;min-height:0}.index-php .screen-layout,.index-php .columns-prefs{display:block}.columns-prefs .columns-prefs-3,.columns-prefs .columns-prefs-4{display:none}}@media only screen and (max-width:850px){#wpbody-content #poststuff #post-body{margin:0}#wpbody-content #post-body.columns-2 #postbox-container-1{margin-right:0;width:100%}#poststuff #postbox-container-1 .empty-container,#poststuff #postbox-container-1 #side-sortables:empty{border:0 none;height:0;min-height:0}#poststuff #post-body.columns-2 #side-sortables{min-height:0}.screen-layout,.columns-prefs{display:none}}.postbox .hndle{cursor:move;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.postbox.closed .hndle{-webkit-border-radius:3px;border-radius:3px}.hndle a{font-size:11px;font-weight:normal}.postbox .handlediv{float:right;width:27px;height:30px;cursor:pointer}.sortable-placeholder{border-width:1px;border-style:dashed;margin-bottom:20px}.widget,.postbox,.stuffbox{margin-bottom:20px;padding:0;border-width:1px;border-style:solid;line-height:1}.widget .widget-top,.postbox h3,.stuffbox h3{margin-top:1px;border-bottom-width:1px;border-bottom-style:solid;cursor:move;-webkit-user-select:none;-moz-user-select:none;user-select:none}.stuffbox h3{cursor:auto}.postbox .inside,.stuffbox .inside{padding:0 10px;line-height:1.4em}.postbox .inside{margin:10px 0;position:relative}.postbox.closed h3{border:0;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.postbox table.form-table{margin-bottom:0}.temp-border{border:1px dotted #ccc}.columns-prefs label{padding:0 5px}#dashboard-widgets-wrap{margin:0 -8px}#wpbody-content .metabox-holder{padding-top:10px}#dashboard-widgets .meta-box-sortables{margin:0 8px}#dashboard_recent_comments div.undo{border-top-style:solid;border-top-width:1px;margin:0 -10px;padding:3px 8px;font-size:11px}#the-comment-list td.comment p.comment-author{margin-top:0;margin-left:0}#the-comment-list p.comment-author img{float:left;margin-right:8px}#the-comment-list p.comment-author strong a{border:0}#the-comment-list td{vertical-align:top}#the-comment-list td.comment{word-wrap:break-word}.welcome-panel{margin:20px 8px;padding:30px 10px 20px;border-width:1px 0;border-style:solid;position:relative;line-height:1.6em;overflow:auto}.welcome-panel h3{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:32px;font-weight:normal;line-height:1.2;margin:.1em 0 .8em}.welcome-panel h4{font-size:14px}.welcome-panel .welcome-panel-close{position:absolute;top:0;right:10px;padding:8px 3px;font-size:13px;text-decoration:none}.welcome-panel .welcome-panel-close:before{background:url('../images/xit.gif') 0 17% no-repeat;content:' ';height:100%;width:10px;left:-12px;position:absolute}.welcome-panel .welcome-panel-close:hover:before{background-position:100% 17%}.welcome-panel .wp-badge{float:left;margin-bottom:20px}.welcome-panel-content{max-width:1500px}.welcome-panel-content .about-description,.welcome-panel h3{margin-left:190px}.welcome-panel p.welcome-panel-dismiss{clear:both;padding:1em 0 0 0}.welcome-panel .welcome-panel-column-container{clear:both;overflow:hidden;position:relative;padding-left:26px}.welcome-panel .welcome-panel-column{margin:0 5% 0 -25px;padding-left:25px;width:30%;min-width:200px;float:left}.welcome-panel .welcome-panel-column.welcome-panel-last{margin-right:0}.welcome-panel h4 .icon16{margin-left:-32px}.welcome-panel .welcome-panel-column ul{margin:1.6em 1em 1em 1.3em}.welcome-panel .welcome-panel-column li{list-style-type:disc;padding-left:2px}table.fixed{table-layout:fixed}.fixed .column-rating,.fixed .column-visible{width:8%}.fixed .column-date,.fixed .column-parent,.fixed .column-links{width:10%}.fixed .column-response,.fixed .column-author,.fixed .column-categories,.fixed .column-tags,.fixed .column-rel,.fixed .column-role{width:15%}.fixed .column-comments{width:4em;padding:8px 0;text-align:left}.fixed .column-comments .vers{padding-left:3px}.fixed .column-comments a{float:left}.fixed .column-slug{width:25%}.fixed .column-posts{width:10%}.fixed .column-icon{width:80px}#comments-form .fixed .column-author{width:20%}#commentsdiv.postbox .inside{margin:0;padding:0}#commentsdiv .inside .row-actions{line-height:18px}#commentsdiv .inside .column-author{width:25%}#commentsdiv .column-comment p{margin:.6em 0;padding:0}#commentsdiv #replyrow td{padding:0}#commentsdiv p{padding:8px 10px;margin:0}#commentsdiv #add-new-comment{border-width:0 0 1px;border-style:none none solid}#commentsdiv .comments-box{border:0 none}#commentsdiv .comments-box thead th{background:transparent;padding:0 7px 4px;font-style:italic}#commentsdiv .comments-box tr:last-child td{border-bottom:0 none}#commentsdiv img.waiting{padding-left:5px}.sorting-indicator{display:none;width:7px;height:4px;margin-top:8px;margin-left:7px;background-image:url(../images/sort.gif);background-repeat:no-repeat}.fixed .column-comments .sorting-indicator{margin-top:3px}.widefat th.sortable,.widefat th.sorted{padding:0}th.sortable a,th.sorted a{display:block;overflow:hidden;padding:7px 7px 8px}.fixed .column-comments.sortable a,.fixed .column-comments.sorted a{padding:8px 0}th.sortable a span,th.sorted a span{float:left;cursor:pointer}th.sorted.asc .sorting-indicator,th.desc:hover span.sorting-indicator{display:block;background-position:0 0}th.sorted.desc .sorting-indicator,th.asc:hover span.sorting-indicator{display:block;background-position:-7px 0}.tablenav-pages a{border-bottom-style:solid;border-bottom-width:2px;font-weight:bold;margin-right:1px;padding:0 2px}.tablenav-pages .current-page{text-align:center}.tablenav-pages .next-page{margin-left:2px}.tablenav a.button-secondary{display:block;margin:3px 8px 0 0}.tablenav{clear:both;height:30px;margin:6px 0 4px;vertical-align:middle}.tablenav.themes{max-width:98%}.tablenav .tablenav-pages{float:right;display:block;cursor:default;height:30px;line-height:30px;font-size:12px}.tablenav .no-pages,.tablenav .one-page .pagination-links{display:none}.tablenav .tablenav-pages a,.tablenav-pages span.current{text-decoration:none;padding:3px 6px}.tablenav .tablenav-pages a.disabled:hover,.tablenav .tablenav-pages a.disabled:active{cursor:default}.tablenav .displaying-num{margin-right:10px;font-size:12px;font-style:italic}.tablenav .actions{padding:2px 8px 0 0}.tablenav .delete{margin-right:20px}.view-switch{float:right;margin:6px 8px 0}.view-switch a{text-decoration:none}.filter{float:left;margin:-5px 0 0 10px}.filter .subsubsub{margin-left:-10px;margin-top:13px}.screen-per-page{width:4em}#posts-filter fieldset{float:left;margin:0 1.5ex 1em 0;padding:0}#posts-filter fieldset legend{padding:0 0 .2em 1px}span.post-state-format{font-weight:normal}#wpbody-content .inline-edit-row fieldset{font-size:12px;float:left;margin:0;padding:0;width:100%}tr.inline-edit-row td,#wpbody-content .inline-edit-row fieldset .inline-edit-col{padding:0 .5em}#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col{border-width:0 0 0 1px;border-style:none none none solid}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:40%}#wpbody-content .quick-edit-row-post .inline-edit-col-right{width:39%}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:20%}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:50%}#wpbody-content .quick-edit-row-page .inline-edit-col-right,#wpbody-content .bulk-edit-row-post .inline-edit-col-right{width:49%}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:30%}#wpbody-content .bulk-edit-row-page .inline-edit-col-right{width:69%}#wpbody-content .bulk-edit-row .inline-edit-col-bottom{float:right;width:69%}#wpbody-content .inline-edit-row-page .inline-edit-col-right{margin-top:27px}.inline-edit-row fieldset .inline-edit-group{clear:both}.inline-edit-row fieldset .inline-edit-group:after{content:".";display:block;height:0;clear:both;visibility:hidden}.inline-edit-row p.submit{clear:both;padding:.5em;margin:.5em 0 0}.inline-edit-row span.error{line-height:22px;margin:0 15px;padding:3px 5px}.inline-edit-row h4{margin:.2em 0;padding:0;line-height:23px}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{margin:0;padding:0;line-height:27px}.inline-edit-row fieldset label,.inline-edit-row fieldset span.inline-edit-categories-label{display:block;margin:.2em 0}.inline-edit-row fieldset label.inline-edit-tags{margin-top:0}.inline-edit-row fieldset label.inline-edit-tags span.title{margin:.2em 0}.inline-edit-row fieldset label span.title{display:block;float:left;width:5em}.inline-edit-row fieldset label span.input-text-wrap{display:block;margin-left:5em}.quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto;padding-right:.5em}.inline-edit-row .input-text-wrap input[type=text]{width:100%}.inline-edit-row fieldset label input[type=checkbox]{vertical-align:text-bottom}.inline-edit-row fieldset label textarea{width:100%;height:4em}#wpbody-content .bulk-edit-row fieldset .inline-edit-group label{max-width:50%}#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child{margin-right:.5em}.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input{width:6em}.inline-edit-row h4{text-transform:uppercase}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{font-style:italic;line-height:1.8em}.inline-edit-row fieldset input[type="text"],.inline-edit-row fieldset textarea{border-style:solid;border-width:1px}.inline-edit-row fieldset .inline-edit-date{float:left}.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=mn]{font-size:12px;width:2.1em}.inline-edit-row fieldset input[name=aa]{font-size:12px;width:3.5em}.inline-edit-row fieldset label input.inline-edit-password-input{width:8em}.inline-edit-row .catshow,.inline-edit-row .cathide{cursor:pointer}ul.cat-checklist{height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0}#bulk-titles{display:block;height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0 0 5px}.inline-edit-row fieldset ul.cat-checklist li,.inline-edit-row fieldset ul.cat-checklist input{margin:0}.inline-edit-row fieldset ul.cat-checklist label,.inline-edit-row .catshow,.inline-edit-row .cathide,.inline-edit-row #bulk-titles div{font-family:sans-serif;font-style:normal;font-size:11px}table .inline-edit-row fieldset ul.cat-hover{height:auto;max-height:30em;overflow-y:auto;position:absolute}.inline-edit-row fieldset label input.inline-edit-menu-order-input{width:3em}.inline-edit-row fieldset label input.inline-edit-slug-input{width:75%}.quick-edit-row-post fieldset label.inline-edit-status{float:left}#bulk-titles{line-height:140%}#bulk-titles div{margin:.2em .3em}#bulk-titles div a{cursor:pointer;display:block;float:left;height:10px;margin:3px 3px 0 -2px;overflow:hidden;position:relative;text-indent:-9999px;width:10px}#titlediv{position:relative;margin-bottom:20px}#titlediv label{cursor:text}#titlediv div.inside{margin:0}#poststuff #titlewrap{border:0;padding:0}#titlediv #title{padding:3px 8px;font-size:1.7em;line-height:100%;width:100%;outline:0}#titlediv #title-prompt-text,#wp-fullscreen-title-prompt-text{color:#bbb;position:absolute;font-size:1.7em;padding:8px 10px}#wp-fullscreen-title-prompt-text{left:0;padding:11px}#poststuff .inside-submitbox,#side-sortables .inside-submitbox{margin:0 3px;font-size:11px}input#link_description,input#link_url{width:98%}#pending{background:0 none;border:0 none;padding:0;font-size:11px;margin-top:-1px}#edit-slug-box{height:1em;margin-top:8px;padding:0 10px}#editable-post-name-full{display:none}#editable-post-name input{width:16em}.postarea h3 label{float:left}#submitpost #ajax-loading,#submitpost .ajax-loading{vertical-align:middle}#wpcontent .ajax-loading{visibility:hidden}.submitbox .submit{text-align:left;padding:12px 10px 10px;font-size:11px}.submitbox .submitdelete{text-decoration:none;padding:1px 2px}.submitbox .submitdelete,.submitbox .submit a:hover{border-bottom-width:1px;border-bottom-style:solid}.submitbox .submit input{margin-bottom:8px;margin-right:4px;padding:6px}.inside-submitbox #post_status{margin:2px 0 2px -2px}#post-status-select,#post-format{line-height:2.5em;margin-top:3px}#post-body #normal-sortables{min-height:50px}.postbox{position:relative;min-width:255px}#trackback_url{width:99%}#normal-sortables .postbox .submit{background:transparent none;border:0 none;float:right;padding:0 12px;margin:0}.category-add input[type="text"],.category-add select{width:100%;max-width:260px}.press-this #side-sortables .category-tabs li,ul.category-tabs li,#side-sortables .add-menu-item-tabs li,.wp-tab-bar li{display:inline;line-height:1.35em}.no-js .category-tabs li.hide-if-no-js{display:none}.category-tabs a,#side-sortables .add-menu-item-tabs a,.wp-tab-bar a{text-decoration:none}.category-tabs{margin:8px 0 3px}#category-adder h4{margin:10px 0}#side-sortables .add-menu-item-tabs,.wp-tab-bar{margin-bottom:3px}#normal-sortables .postbox #replyrow .submit{float:none;margin:0;padding:0 7px 5px}#side-sortables .submitbox .submit input,#side-sortables .submitbox .submit .preview,#side-sortables .submitbox .submit a.preview:hover{border:0 none}#side-sortables .inside-submitbox .insidebox,.stuffbox .insidebox{margin:11px 0}ul.category-tabs,ul.add-menu-item-tabs,ul.wp-tab-bar{margin-top:12px}ul.category-tabs li,ul.add-menu-item-tabs li.tabs,.wp-tab-active{border-style:solid solid none;border-width:1px 1px 0}#post-body .add-menu-item-tabs li.tabs{border-style:solid none solid solid;border-width:1px 0 1px 1px;margin-right:-1px}ul.category-tabs li,ul.add-menu-item-tabs li,ul.wp-tab-bar li{padding:3px 5px 5px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}form#tags-filter{position:relative}td.post-title strong,td.plugin-title strong{display:block;margin-bottom:.2em}td.post-title p,td.plugin-title p{margin:6px 0}.wp-hidden-children .wp-hidden-child,.ui-tabs-hide{display:none}.commentlist .avatar{vertical-align:text-top}#post-body .tagsdiv #newtag{margin-right:5px;width:16em}#side-sortables input#post_password{width:94%}#side-sortables .tagsdiv #newtag{width:68%}#post-status-info{border-width:0 1px 1px;border-style:none solid solid;width:100%;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}#post-status-info td{font-size:12px}.autosave-info{padding:2px 15px;text-align:right}#editorcontent #post-status-info{border:0}#post-body .wp_themeSkin .mceStatusbar a.mceResize{display:block;background:transparent url(../images/resize.gif) no-repeat scroll right bottom;width:12px;cursor:se-resize;margin:0 2px;position:relative;top:-2px}#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize{top:20px}#wp-word-count{display:block;padding:2px 10px}#timestampdiv select{height:20px;line-height:14px;padding:0;vertical-align:top}#aa,#jj,#hh,#mn{padding:1px;font-size:12px}#jj,#hh,#mn{width:2em}#aa{width:3.4em}.curtime #timestamp{background-repeat:no-repeat;background-position:left top;padding-left:18px}#timestampdiv{padding-top:5px;line-height:23px}#timestampdiv p{margin:8px 0 6px}#timestampdiv input{border-width:1px;border-style:solid}#postcustomstuff .updatemeta,#postcustomstuff .deletemeta{margin:auto}#postcustomstuff thead th{padding:5px 8px 8px}#postcustom #postcustomstuff .submit{border:0 none;float:none;padding:5px 8px}#side-sortables #postcustom #postcustomstuff .submit{padding:0 5px}#side-sortables #postcustom #postcustomstuff td.left input{margin:3px 3px 0}#side-sortables #postcustom #postcustomstuff #the-list textarea{height:85px;margin:3px}#postcustomstuff table{margin:0;width:100%;border-width:1px;border-style:solid;border-spacing:0}#postcustomstuff table input,#postcustomstuff table select,#postcustomstuff table textarea{width:95%;margin:8px 0 8px 8px}#postcustomstuff th.left,#postcustomstuff td.left{width:38%}#postcustomstuff #newmeta .submit{padding:0 8px}#postcustomstuff .submit input,#postcustomstuff table #addmetasub{width:auto}#postcustomstuff #newmetaleft{vertical-align:top}#postcustomstuff #newmetaleft a{padding:0 10px;text-decoration:none}table.diff{width:100%}table.diff col.content{width:50%}table.diff tr{background-color:transparent}table.diff td,table.diff th{padding:.5em;font-family:Consolas,Monaco,monospace;border:0}table.diff .diff-deletedline del,table.diff .diff-addedline ins{text-decoration:none}.category-adder{margin-left:120px;padding:4px 0}.category-adder h4{margin:0 0 8px}#side-sortables .category-adder{margin:0}#post-body ul.add-menu-item-tabs{float:left;width:120px;text-align:right;margin:0 -120px 0 5px;padding:0}#post-body ul.add-menu-item-tabs li{padding:8px}#post-body ul.add-menu-item-tabs li.tabs{-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:3px}.wp-tab-panel,.categorydiv div.tabs-panel,.customlinkdiv div.tabs-panel,.posttypediv div.tabs-panel,.taxonomydiv div.tabs-panel{height:200px;overflow:auto;padding:.5em .9em;border-style:solid;border-width:1px}.nav-menus-php .customlinkdiv div.tabs-panel,.nav-menus-php .posttypediv div.tabs-panel,.nav-menus-php .taxonomydiv div.tabs-panel{height:auto;max-height:205px}div.tabs-panel-active{display:block}div.tabs-panel-inactive{display:none}.colunms-1 .categorydiv div.tabs-panel,.taxonomy div.tabs-panel{margin:0 5px 0 125px}.customlinkdiv ul,.posttypediv ul,.taxonomydiv ul{list-style:none;padding:0;margin:0}#front-page-warning,#front-static-pages ul,ul.export-filters,.inline-editor ul.cat-checklist ul,.categorydiv ul.categorychecklist ul,.customlinkdiv ul.categorychecklist ul,.posttypediv ul.categorychecklist ul,.taxonomydiv ul.categorychecklist ul{margin-left:18px}ul.categorychecklist li{margin:0;padding:0;line-height:19px;word-wrap:break-word}.categorydiv .tabs-panel,.customlinkdiv .tabs-panel,.posttypediv .tabs-panel,.taxonomydiv .tabs-panel{border-width:3px;border-style:solid}.form-wrap p,.form-wrap label{font-size:11px}.form-wrap label{display:block;padding:2px;font-size:12px}.form-field input,.form-field textarea{border-style:solid;border-width:1px;width:95%}p.description,.form-wrap p{margin:2px 0 5px}p.help,p.description,span.description,.form-wrap p{font-size:12px;font-style:italic;font-family:sans-serif}.form-wrap .form-field{margin:0 0 10px;padding:8px}.col-wrap h3{margin:12px 0;font-size:1.1em}.col-wrap p.submit{margin-top:-10px}#poststuff .taghint{color:#aaa;margin:15px 0 -24px 12px}#poststuff .tagsdiv .howto{margin:0 0 6px 8px}.ajaxtag .newtag{position:relative}.tagsdiv .newtag{width:180px}.tagsdiv .the-tags{display:block;height:60px;margin:0 auto;overflow:auto;width:260px}#post-body-content .tagsdiv .the-tags{margin:0 5px}p.popular-tags{-webkit-border-radius:8px;border-radius:8px;border-width:1px;border-style:solid;line-height:2em;max-width:1000px;padding:8px 12px 12px;text-align:justify}p.popular-tags a{padding:0 3px}.tagcloud{width:97%;margin:0 0 40px;text-align:justify}.tagcloud h3{margin:2px 0 12px}.ac_results{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;display:none;border-width:1px;border-style:solid}.ac_results li{padding:2px 5px;white-space:nowrap;text-align:left}.ac_over{cursor:pointer}.ac_match{text-decoration:underline}table.links-table{width:100%}.links-table th{font-weight:normal;text-align:left;vertical-align:top;min-width:80px;width:20%;word-wrap:break-word}.links-table th,.links-table td{padding:5px 0}.links-table td label{margin-right:8px}.links-table td input[type="text"],.links-table td textarea{width:100%}.links-table #link_rel{max-width:280px}.media-item .describe{border-collapse:collapse;width:100%;border-top-style:solid;border-top-width:1px;clear:both;cursor:default}.media-item.media-blank .describe{border:0}.media-item .describe th{vertical-align:top;text-align:left;padding:5px 10px 10px;width:140px}.media-item .describe .align th{padding-top:0}.media-item .media-item-info tr{background-color:transparent}.media-item .describe td{padding:0 8px 8px 0;vertical-align:top}.media-item thead.media-item-info td{padding:4px 10px 0}.media-item .media-item-info .A1B1{padding:0 0 0 10px}.media-item td.savesend{padding-bottom:15px}.media-item .thumbnail{max-height:128px;max-width:128px}#wpbody-content #async-upload-wrap a{display:none}.media-upload-form{margin-top:20px}.media-upload-form td label{margin-right:6px;margin-left:2px}.media-upload-form .align .field label{display:inline;padding:0 0 0 23px;margin:0 1em 0 3px;font-weight:bold}.media-upload-form tr.image-size label{margin:0 0 0 5px;font-weight:bold}.media-upload-form th.label label{font-weight:bold;margin:.5em;font-size:13px}.media-upload-form th.label label span{padding:0 5px}abbr.required{border:medium none;text-decoration:none}.media-item .describe input[type="text"],.media-item .describe textarea{width:460px}.media-item .describe p.help{margin:0;padding:0 0 0 5px}.describe-toggle-on,.describe-toggle-off{display:block;line-height:36px;float:right;margin-right:15px}.media-item .describe-toggle-off,.media-item.open .describe-toggle-on,.media-item.open img.pinkynail{display:none}.media-item.open .describe-toggle-off{display:block}#media-items .media-item{border-style:solid;border-width:1px;min-height:36px;position:relative;margin-top:-1px;width:100%}#media-items{width:623px}#media-items:empty{border:0 none}.media-item .filename{line-height:36px;overflow:hidden;padding:0 10px}.media-item .error-div{padding-left:10px}.media-item .pinkynail{float:left;margin:2px 2px 0;max-width:40px;max-height:32px}.media-item .startopen,.media-item .startclosed{display:none}.media-item .original{position:relative;height:34px}.media-item .progress{float:right;height:22px;margin:6px 10px 0 0;width:200px;line-height:2em;padding:0;overflow:hidden;margin-bottom:2px;border:1px solid #d1d1d1;background:#fff;background-image:linear-gradient(bottom,#fff 0,#f7f7f7 100%);background-image:-o-linear-gradient(bottom,#fff 0,#f7f7f7 100%);background-image:-moz-linear-gradient(bottom,#fff 0,#f7f7f7 100%);background-image:-webkit-linear-gradient(bottom,#fff 0,#f7f7f7 100%);background-image:-ms-linear-gradient(bottom,#fff 0,#f7f7f7 100%);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 0 3px rgba(0,0,0,0.1);box-shadow:inset 0 0 3px rgba(0,0,0,0.1)}.media-item .bar{z-index:9;width:0;height:100%;margin-top:-24px;background-color:#83b4d8;background-image:linear-gradient(bottom,#72a7cf 0,#90c5ee 100%);background-image:-o-linear-gradient(bottom,#72a7cf 0,#90c5ee 100%);background-image:-moz-linear-gradient(bottom,#72a7cf 0,#90c5ee 100%);background-image:-webkit-linear-gradient(bottom,#72a7cf 0,#90c5ee 100%);background-image:-ms-linear-gradient(bottom,#72a7cf 0,#90c5ee 100%);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.3);box-shadow:0 0 3px rgba(0,0,0,0.3)}.media-item .progress .percent{z-index:10;position:relative;width:200px;padding:0 8px;text-shadow:0 1px 0 rgba(255,255,255,0.4);color:rgba(0,0,0,0.6)}.upload-php .fixed .column-parent{width:25%}.js .html-uploader #plupload-upload-ui{display:none}.js .html-uploader #html-upload-ui{display:block}.media-upload-form .media-item.error{margin:0;padding:0}.media-upload-form .media-item.error p,.media-item .error-div{line-height:16px;margin:5px 10px;padding:0}.media-item .error-div a.dismiss{display:block;float:right;margin:5px 4px 0 15px}.find-box{width:500px;height:300px;overflow:hidden;padding:33px 5px 40px;position:absolute;z-index:1000}.find-box-head{cursor:move;font-weight:bold;height:2em;line-height:2em;padding:1px 12px;position:absolute;top:5px;width:100%}.find-box-inside{overflow:auto;width:100%;height:100%}.find-box-search{padding:12px;border-width:1px;border-style:none none solid}#find-posts-response{margin:8px 0;padding:0 1px}#find-posts-response table{width:100%}#find-posts-response .found-radio{padding:5px 0 0 8px;width:15px}.find-box-buttons{width:480px;margin:8px}.find-box-search label{padding-right:6px}.find-box #resize-se{position:absolute;right:1px;bottom:1px}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border-width:1px;border-style:solid;line-height:1.8em;word-spacing:3px;-webkit-border-radius:6px;border-radius:6px}.drag-drop #drag-drop-area{border:4px dashed #ddd;height:200px}.drag-drop .drag-drop-inside{margin:70px auto 0;width:250px}.drag-drop-inside p{color:#aaa;font-size:14px;margin:5px 0;display:none}.drag-drop .drag-drop-inside p{text-align:center}.drag-drop-inside p.drag-drop-info{font-size:20px}.drag-drop .drag-drop-inside p,.drag-drop-inside p.drag-drop-buttons{display:block}.drag-drop.drag-over #drag-drop-area{border-color:#83b4d8}#plupload-upload-ui{position:relative}.describe .image-editor{vertical-align:top}.imgedit-wrap{position:relative}.imgedit-settings p{margin:8px 0}.describe .imgedit-wrap table td{vertical-align:top;padding-top:0}.imgedit-wrap p,.describe .imgedit-wrap table td{font-size:11px;line-height:18px}.describe .imgedit-wrap table td.imgedit-settings{padding:0 5px}td.imgedit-settings input{vertical-align:middle}.imgedit-wait{position:absolute;top:0;background:#fff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px;opacity:.7;filter:alpha(opacity=70);width:100%;height:500px;display:none}.media-disabled,.imgedit-settings .disabled{color:grey}.imgedit-wait-spin{padding:0 4px 4px;vertical-align:bottom;visibility:hidden}.imgedit-menu{margin:0 0 12px;min-width:300px}.imgedit-menu div{float:left;width:32px;height:32px}.imgedit-crop-wrap{position:relative}.imgedit-crop{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -9px -31px;margin:0 8px 0 0}.imgedit-crop.disabled:hover{background-position:-9px -31px}.imgedit-crop:hover{background-position:-9px -1px}.imgedit-rleft{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -46px -31px;margin:0 3px}.imgedit-rleft.disabled:hover{background-position:-46px -31px}.imgedit-rleft:hover{background-position:-46px -1px}.imgedit-rright{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -77px -31px;margin:0 8px 0 3px}.imgedit-rright.disabled:hover{background-position:-77px -31px}.imgedit-rright:hover{background-position:-77px -1px}.imgedit-flipv{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -115px -31px;margin:0 3px}.imgedit-flipv.disabled:hover{background-position:-115px -31px}.imgedit-flipv:hover{background-position:-115px -1px}.imgedit-fliph{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -147px -31px;margin:0 8px 0 3px}.imgedit-fliph.disabled:hover{background-position:-147px -31px}.imgedit-fliph:hover{background-position:-147px -1px}.imgedit-undo{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -184px -31px;margin:0 3px}.imgedit-undo.disabled:hover{background-position:-184px -31px}.imgedit-undo:hover{background-position:-184px -1px}.imgedit-redo{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -215px -31px;margin:0 8px 0 3px}.imgedit-redo.disabled:hover{background-position:-215px -31px}.imgedit-redo:hover{background-position:-215px -1px}.imgedit-applyto img{margin:0 8px 0 0}.imgedit-group-top{margin:5px 0}.imgedit-applyto .imgedit-label{padding:2px 0 0;display:block}.imgedit-help{display:none;font-style:italic;margin-bottom:8px}.imgedit-help ul li{font-size:11px}a.imgedit-help-toggle{text-decoration:none}#wpbody-content .imgedit-response div{width:600px;margin:8px}.form-table td.imgedit-response{padding:0}.imgedit-submit{margin:8px 0}.imgedit-submit-btn{margin-left:20px}.imgedit-wrap .nowrap{white-space:nowrap}span.imgedit-scale-warn{color:red;font-size:20px;font-style:normal;visibility:hidden;vertical-align:middle}.imgedit-group{border-width:1px;border-style:solid;-webkit-border-radius:8px;border-radius:8px;margin-bottom:8px;padding:2px 10px}.form-table{border-collapse:collapse;margin-top:.5em;width:100%;margin-bottom:-8px;clear:both}.form-table td{margin-bottom:9px;padding:8px 10px;line-height:20px;font-size:12px}.form-table th,.form-wrap label{font-weight:normal;text-shadow:#fff 0 1px 0}.form-table th{vertical-align:top;text-align:left;padding:10px;width:200px}.form-table th.th-full{width:auto}.form-table div.color-option{display:block;clear:both;margin-top:12px}.form-table input.tog{margin-top:2px;margin-right:2px;float:left}.form-table td p{margin-top:4px}.form-table table.color-palette{vertical-align:bottom;float:left;margin:-12px 3px 11px}.form-table .color-palette td{border-width:1px 1px 0;border-style:solid solid none;height:10px;line-height:20px;width:10px}.commentlist li{padding:1em 1em .2em;margin:0;border-bottom-width:1px;border-bottom-style:solid}.commentlist li li{border-bottom:0;padding:0}.commentlist p{padding:0;margin:0 0 .8em}#replyrow input{border-width:1px;border-style:solid}#replyrow td{padding:2px}#replysubmit{margin:0;padding:0 7px 3px;text-align:center}#replysubmit img.waiting,.inline-edit-save img.waiting{padding:4px 10px 0;vertical-align:top;float:right}#replysubmit .button{margin-right:5px}#replysubmit .error{color:red;line-height:21px;text-align:center;vertical-align:center}#replyrow h5{margin:.2em 0 0;padding:0 5px;line-height:1.4em;font-size:1em}#edithead .inside{float:left;padding:3px 0 2px 5px;margin:0;text-align:center}#edithead .inside input{width:180px}#edithead label{padding:2px 0}#replycontainer{padding:5px}#replycontent{height:120px}.comment-ays{margin-bottom:0;border-style:solid;border-width:1px}.comment-ays th{border-right-style:solid;border-right-width:1px}.trash-undo-inside,.spam-undo-inside{margin:1px 8px 1px 0;line-height:16px}.spam-undo-inside .avatar,.trash-undo-inside .avatar{height:20px;width:20px;margin-right:8px;vertical-align:middle}.stuffbox .editcomment{clear:none}#comment-status-radio p{margin:3px 0 5px}#comment-status-radio input{margin:2px 3px 5px 0;vertical-align:middle}#comment-status-radio label{padding:5px 0}.commentlist .avatar{vertical-align:text-top}.theme-install-php .tablenav{height:auto}h3.available-themes{margin:0 0 1em;float:left}.available-theme{display:inline-block;margin-right:10px;overflow:hidden;padding:20px 20px 20px 0;vertical-align:top;width:300px}.available-theme .screenshot{width:300px;height:225px;display:block;border-width:1px;border-style:solid;margin-bottom:10px;overflow:hidden}.available-theme img{width:300px}.available-theme h3{margin:15px 0 0}.available-theme .theme-author{line-height:18px}.available-theme .action-links{margin-top:10px;overflow:hidden}#current-theme .theme-info li,.theme-options li,.available-theme .action-links li{float:left;padding-right:10px;margin-right:10px;border-right:1px solid #dfdfdf}.available-theme .action-links li{padding-right:8px;margin-right:8px}#current-theme .theme-info li:last-child,.theme-options li:last-child,.available-theme .action-links li:last-child{padding-right:0;margin-right:0;border-right:0}.available-theme .action-links .delete-theme{float:right;margin-left:8px;margin-right:0}.available-theme .action-links .delete-theme a{color:red;padding:2px}.available-theme .action-links .delete-theme a:hover{background:red;color:#fff;text-decoration:none}.available-theme .action-links p{float:left}#current-theme{margin:20px 0 10px;padding:0 0 20px;border-bottom:1px solid #dfdfdf;overflow:hidden}#current-theme.has-screenshot{padding-left:330px}#current-theme h3{margin:0;font-size:12px;font-weight:normal;color:#999}#current-theme h4{margin:3px 0 16px;font-size:20px}#current-theme h4 span{margin-left:20px;font-size:12px;font-weight:normal}#current-theme a{border-bottom:0}#current-theme .theme-info{margin:1em 0;overflow:hidden}#current-theme .theme-description{margin-top:5px;max-width:600px;line-height:1.6em}#current-theme img{float:left;width:300px;margin-left:-330px;border-width:1px;border-style:solid}.theme-options{overflow:hidden;font-size:14px;padding-bottom:10px}.theme-options .load-customize{margin-right:30px;float:left}.theme-options span{float:left;margin-right:10px;text-transform:uppercase;font-size:11px;line-height:18px;color:#999}.theme-options ul{float:left;margin:0}@media only screen and (max-width:1200px){.available-theme,.available-theme .screenshot,#current-theme img{width:240px}.available-theme .screenshot{height:180px}.available-theme img{width:100%}#current-theme.has-screenshot{padding-left:270px}#current-theme img{margin-left:-270px}}#post-body ul.add-menu-item-tabs li.tabs a,#TB_window #TB_title a.tb-theme-preview-link,#TB_window #TB_title a.tb-theme-preview-link:visited{font-weight:bold;text-decoration:none}#TB_window #TB_title{background-color:#222;color:#cfcfcf}#broken-themes{text-align:left;width:50%;border-spacing:3px;padding:3px}.theme-install-php h4{margin:2.5em 0 8px}.appearance_page_custom-header #headimg{border:1px solid #dfdfdf;width:100%}.appearance_page_custom-header #upload-form p label{font-size:12px}.appearance_page_custom-header .available-headers .default-header{float:left;margin:0 20px 20px 0}.appearance_page_custom-header .random-header{clear:both;margin:0 20px 20px 0;vertical-align:middle}.appearance_page_custom-header .available-headers label input,.appearance_page_custom-header .random-header label input{margin-right:10px}.appearance_page_custom-header .available-headers label img{vertical-align:middle}div#custom-background-image{min-height:100px;border:1px solid #dfdfdf}div#custom-background-image img{max-width:400px;max-height:300px}.nav-tab{border-style:solid;border-color:#dfdfdf #dfdfdf #fff;border-width:1px 1px 0;color:#aaa;text-shadow:#fff 0 1px 0;font-size:12px;line-height:16px;display:inline-block;padding:4px 14px 6px;text-decoration:none;margin:0 6px -1px 0;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.nav-tab-active{border-width:1px;color:#464646}.nav-tab:hover,.nav-tab-active{border-color:#ccc #ccc #fff}h2.nav-tab-wrapper,h3.nav-tab-wrapper{border-bottom:1px solid #ccc;padding-bottom:0}h2 .nav-tab{padding:4px 10px 6px;font-weight:200;font-size:20px;line-height:24px}#dashboard_right_now .versions .b,#post-status-display,#post-visibility-display,#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover,.media-item .percent,.plugins .name,#pass-strength-result.strong,#pass-strength-result.short,.button-highlighted,input.button-highlighted,#quicktags #ed_strong,#ed_reply_toolbar #ed_reply_strong,.item-controls .item-order a,.feature-filter .feature-name{font-weight:bold}.plugins p{margin:0 4px;padding:0}.plugins .desc p{margin:0 0 8px}.plugins td.desc{line-height:1.5em}.plugins .desc ul,.plugins .desc ol{margin:0 0 0 2em}.plugins .desc ul{list-style-type:disc}.plugins .row-actions-visible{padding:0}.plugins tbody th.check-column{padding:7px 0}.plugins .inactive td,.plugins .inactive th,.plugins .active td,.plugins .active th{border-top-style:solid;border-top-width:1px;padding:5px 7px 0}.plugins .update th,.plugins .update td{border-bottom:0}.plugin-update-tr td{border-top:0}#wpbody-content .plugins .plugin-title,#wpbody-content .plugins .theme-title{padding-right:12px;white-space:nowrap}.plugins .second,.plugins .row-actions-visible{padding:0 0 5px}.plugins .update .second,.plugins .update .row-actions-visible{padding-bottom:0}.plugins-php .widefat tfoot th,.plugins-php .widefat tfoot td{border-top-style:solid;border-top-width:1px}.plugin-update-tr .update-message{margin:5px;padding:3px 5px}.plugin-install-php h4{margin:2.5em 0 8px}#profile-page .form-table textarea{width:500px;margin-bottom:6px}#profile-page .form-table #rich_editing{margin-right:5px}#your-profile legend{font-size:22px}#your-profile #rich_editing{border:0}#display_name{width:15em}#createuser .form-field input{width:25em}.pressthis{margin:20px 0}.pressthis a{display:inline-block;position:relative;cursor:move;color:#333;background:#dfdfdf;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0.07,#e6e6e6),color-stop(0.77,#d8d8d8));background-image:-webkit-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-moz-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-ms-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-o-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);-webkit-border-radius:5px;border-radius:5px;border:1px solid #b4b4b4;font-style:normal;line-height:16px;font-size:14px;text-decoration:none;text-shadow:0 1px 0 #fff}.pressthis a:hover,.pressthis a:active{color:#333}.pressthis a:hover:after{transform:skew(20deg) rotate(9deg);-webkit-transform:skew(20deg) rotate(9deg);-moz-transform:skew(20deg) rotate(9deg);box-shadow:0 10px 8px rgba(0,0,0,0.7);-webkit-box-shadow:0 10px 8px rgba(0,0,0,0.7);-moz-box-shadow:0 10px 8px rgba(0,0,0,0.7)}.pressthis a span{background:url(../images/press-this.png?v=20120502) no-repeat 0 5px;padding:8px 11px 8px 27px;margin:0 5px;display:inline-block}.pressthis a:after{content:'';width:70%;height:55%;z-index:-1;position:absolute;right:10px;bottom:9px;background:transparent;transform:skew(20deg) rotate(6deg);-webkit-transform:skew(20deg) rotate(6deg);-moz-transform:skew(20deg) rotate(6deg);box-shadow:0 10px 8px rgba(0,0,0,0.6);-webkit-box-shadow:0 10px 8px rgba(0,0,0,0.6);-moz-box-shadow:0 10px 8px rgba(0,0,0,0.6)}#utc-time,#local-time{padding-left:25px;font-style:italic;font-family:sans-serif}.defaultavatarpicker .avatar{margin:2px 0;vertical-align:middle}#footer{position:absolute;bottom:0;left:0;right:0;padding:10px 0;margin-right:20px;border-top-width:1px;border-top-style:solid}#footer p{margin:0;line-height:20px}#footer a{text-decoration:none}#footer a:hover{text-decoration:underline}.about-wrap{position:relative;margin:25px 40px 0 20px;max-width:1050px;font-size:15px}.about-wrap div.updated,.about-wrap div.error{display:none!important}.about-wrap p{line-height:1.6em}.about-wrap h1{margin:.2em 200px 0 0;line-height:1.2em;font-size:2.8em;font-weight:200}.about-text,.about-description,.about-wrap li.wp-person a.web{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-weight:normal;line-height:1.6em;font-size:20px}.about-description{margin-top:1.4em}.about-text{margin:1em 200px 1.4em 0;min-height:60px;font-size:24px}.about-wrap h3{font-size:24px;margin-bottom:1em;padding-top:20px}.about-wrap .changelog{overflow:hidden}.about-wrap .changelog li{list-style-type:disc;margin-left:3em}.about-wrap .feature-section{padding-bottom:20px}.about-wrap .feature-section h4{margin-bottom:.6em}.about-wrap .feature-section p{margin-top:.6em}.about-wrap code{font-size:14px}.about-wrap .point-releases{margin-top:5px}.about-wrap .changelog.point-releases h3{padding-top:35px}.about-wrap .changelog.point-releases h3:first-child{padding-top:7px}.wp-badge{padding-top:142px;height:50px;width:173px;font-weight:bold;font-size:14px;text-align:center;margin:0 -5px;background:url('../images/wp-badge.png?ver=20111120') no-repeat}.about-wrap .wp-badge{position:absolute;top:0;right:0}.about-wrap h2.nav-tab-wrapper{padding-left:6px}.about-wrap h2 .nav-tab{padding:4px 10px 6px;margin:0 3px -1px 0;font-size:18px;vertical-align:top}.about-wrap h2 .nav-tab-active{font-weight:bold;padding-top:3px}.about-wrap .feature-section img{border:0;margin:0 1.94% 10px 0;-webkit-border-radius:3px;border-radius:3px}.about-wrap .feature-section img.image-50{max-width:50%}.about-wrap .feature-section img.image-30{max-width:31.2381%}.ie8 .about-wrap .feature-section img{border-width:1px;border-style:solid}.about-wrap .feature-section.three-col{padding-top:15px;margin-bottom:0}.about-wrap .feature-section.three-col div{width:30%;margin-right:4.999999999%;float:left}.about-wrap .feature-section.three-col h4{margin:0 0 .6em 0}.about-wrap .feature-section.three-col img{margin:.5em 0 .5em 5px;max-width:100%;float:none}.ie8 .about-wrap .feature-section.three-col img{margin-left:0}.about-wrap .feature-section.three-col .last-feature{margin-right:0}.about-wrap .three-col-images{text-align:center}.about-wrap .three-col-images img{margin:0 0 10px}.about-wrap .three-col-images .last-feature{float:right}.about-wrap .three-col-images .first-feature{float:left}.about-wrap .feature-section.images-stagger-right img{float:right;margin:0 5px 12px 12px}.about-wrap .feature-section.images-stagger-left img{float:left;margin:0 12px 12px 5px}@media only screen and (max-width:900px){.about-wrap .feature-section.images-stagger-left img,.about-wrap .feature-section.images-stagger-right img{clear:both}}.about-wrap .return-to-dashboard{margin:30px 0 0 -5px;font-size:14px;font-weight:bold}.about-wrap .return-to-dashboard a{text-decoration:none;padding:0 5px}.about-wrap h4.wp-people-group{margin-top:2.6em;font-size:16px}.about-wrap ul.wp-people-group{overflow:hidden;padding:5px;margin:0 -15px 0 -5px}.about-wrap ul.compact{margin-bottom:0}.about-wrap li.wp-person{float:left;margin-right:10px}.about-wrap li.wp-person img.gravatar{float:left;margin:0 10px 10px 0;padding:2px;width:60px;height:60px}.about-wrap ul.compact li.wp-person img.gravatar{width:30px;height:30px}.about-wrap li.wp-person{height:70px;width:280px;padding-bottom:15px}.about-wrap ul.compact li.wp-person{height:auto;width:180px;padding-bottom:0;margin-bottom:0}.about-wrap #wp-people-group-validators+p.wp-credits-list{margin-top:0}.about-wrap li.wp-person a.web{display:block;margin:6px 0 2px;font-size:16px;text-decoration:none}.about-wrap p.wp-credits-list a{white-space:nowrap}.freedoms-php .about-wrap ol{margin:40px 60px}.freedoms-php .about-wrap ol li{list-style-type:decimal;font-weight:bold}.freedoms-php .about-wrap ol p{font-weight:normal;margin:.6em 0}body.full-overlay-active{overflow:hidden}.wp-full-overlay{background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%;min-width:0}.wp-full-overlay-sidebar{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:fixed;width:300px;height:100%;top:0;bottom:0;left:0;padding:0;margin:0;z-index:10;overflow:auto;background:#f5f5f5;border-right:1px solid rgba(0,0,0,0.2)}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{overflow:visible}.wp-full-overlay.collapsed,.wp-full-overlay.expanded .wp-full-overlay-sidebar{margin-left:0!important}.wp-full-overlay.expanded{margin-left:300px}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{margin-left:-300px}.wp-full-overlay-sidebar:after{content:'';display:block;position:absolute;top:0;bottom:0;right:0;width:3px;box-shadow:-5px 0 4px -4px rgba(0,0,0,0.1) inset;z-index:1000}.wp-full-overlay-main{position:absolute;left:0;right:0;top:0;bottom:0;height:100%}.wp-full-overlay-sidebar .wp-full-overlay-header,.wp-full-overlay-sidebar .wp-full-overlay-footer{position:absolute;left:0;right:0;height:45px;padding:0 20px;line-height:45px;z-index:10;margin:0}.wp-full-overlay-sidebar .wp-full-overlay-header{top:0;border-top:0;border-bottom:1px solid #fff;box-shadow:inset 0 -1px 0 0 #dfdfdf}.wp-full-overlay-sidebar .wp-full-overlay-footer{bottom:0;border-bottom:0;border-top:1px solid #dfdfdf;box-shadow:inset 0 1px 0 0 #fff}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content{position:absolute;top:45px;bottom:45px;left:0;right:0;overflow:auto}.wp-full-overlay .close-full-overlay{text-decoration:none}.wp-full-overlay .collapse-sidebar{position:absolute;bottom:12px;left:0;z-index:50;display:block;width:19px;height:19px;margin-left:15px;padding:0;border-radius:50%;text-decoration:none}.wp-full-overlay.collapsed .collapse-sidebar{position:absolute;left:100%}.wp-full-overlay .collapse-sidebar-arrow{position:absolute;margin-top:2px;margin-left:2px;display:block;width:15px;height:15px;background:transparent url('../images/arrows.png') no-repeat 0 -72px}.wp-full-overlay.collapsed .collapse-sidebar-arrow{background-position:0 -108px}.wp-full-overlay .collapse-sidebar-label{position:absolute;left:100%;color:#808080;line-height:20px;margin-left:10px}.wp-full-overlay.collapsed .collapse-sidebar-label{display:none}.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label{color:#666}.wp-full-overlay,.wp-full-overlay-sidebar,.wp-full-overlay .collapse-sidebar,.wp-full-overlay-main{-webkit-transition-property:left,right,top,bottom,width,margin;-moz-transition-property:left,right,top,bottom,width,margin;-ms-transition-property:left,right,top,bottom,width,margin;-o-transition-property:left,right,top,bottom,width,margin;transition-property:left,right,top,bottom,width,margin;-webkit-transition-duration:.2s;-moz-transition-duration:.2s;-ms-transition-duration:.2s;-o-transition-duration:.2s;transition-duration:.2s}.no-customize-support .hide-if-no-customize,.customize-support .hide-if-customize{display:none}#customize-container{display:none;background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%}.customize-active #customize-container{display:block}.customize-loading #customize-container iframe{opacity:0}.customize-loading #customize-container{background:#fff url("../images/wpspin_light.gif") no-repeat fixed center center}#customize-container iframe,#theme-installer iframe{height:100%;width:100%;z-index:20;-webkit-transition:opacity .3s;-moz-transition:opacity .3s;-ms-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s}#customize-container .collapse-sidebar{bottom:16px}#theme-installer{display:none}#theme-installer.single-theme{display:block}.install-theme-info{display:none;padding:10px 20px 20px}.single-theme .install-theme-info{padding-top:15px}#theme-installer .install-theme-info{display:block}.install-theme-info .theme-install{float:right;margin-top:18px}.install-theme-info .theme-name{font-size:16px;line-height:24px;margin-bottom:0}.install-theme-info .theme-screenshot{margin-top:15px;width:258px;border:1px solid #ccc}.install-theme-info .theme-details{overflow:hidden}.theme-details .theme-version{margin:15px 0;float:left}.theme-details .star-holder{margin:14px 0;float:right}.theme-details .theme-description{float:left;color:#777;line-height:20px}#excerpt,.attachmentlinks{margin:0;height:4em;width:98%}#template div{margin-right:190px}p.pagenav{margin:0;display:inline}.pagenav span{font-weight:bold;margin:0 6px}.row-title{font-size:13px!important;font-weight:bold}.column-author img,.column-username img{float:left;margin-right:10px;margin-top:1px}.row-actions{visibility:hidden;padding:2px 0 0}.mobile .row-actions{visibility:visible}tr:hover .row-actions,div.comment-item:hover .row-actions{visibility:visible}.row-actions-visible{padding:2px 0 0}.form-table .pre{padding:8px;margin:0}table.form-table td .updated{font-size:13px}.tagchecklist{margin-left:14px;font-size:12px;overflow:auto}.tagchecklist strong{margin-left:-8px;position:absolute}.tagchecklist span{margin-right:25px;display:block;float:left;font-size:11px;line-height:1.8em;white-space:nowrap;cursor:default}.tagchecklist span a{margin:6px 0 0 -9px;cursor:pointer;width:10px;height:10px;display:block;float:left;text-indent:-9999px;overflow:hidden;position:absolute}#poststuff h2{margin-top:20px;font-size:1.5em;margin-bottom:15px;padding:0 0 3px;clear:left}#poststuff h3,.metabox-holder h3{font-size:15px;font-weight:normal;padding:7px 10px;margin:0;line-height:1}#poststuff .inside{margin:6px 0 8px}#poststuff .inside #parent_id,.inline-edit-row #post_parent{max-width:100%}#post-visibility-select,#post-formats-select{line-height:1.5em;margin-top:3px}#poststuff #submitdiv .inside{margin:0;padding:0}#titlediv,#poststuff .postarea{margin-bottom:20px}#templateside ul li a{text-decoration:none}.tool-box .title{margin:8px 0;font-size:18px;font-weight:normal;line-height:24px}#sidemenu{margin:-30px 15px 0 315px;list-style:none;position:relative;float:right;padding-left:10px;font-size:12px}#sidemenu a{padding:0 7px;display:block;float:left;line-height:28px;border-top-width:1px;border-top-style:solid;border-bottom-width:1px;border-bottom-style:solid}#sidemenu li{display:inline;line-height:200%;list-style:none;text-align:center;white-space:nowrap;margin:0;padding:0}#sidemenu a.current{font-weight:normal;padding-left:6px;padding-right:6px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px;border-width:1px;border-style:solid}#sidemenu li a .count-0{display:none}.plugin-install #description,.plugin-install-network #description{width:60%}table .vers,table .column-visible,table .column-rating{text-align:left}.error-message{color:red;font-weight:bold}body.iframe{height:98%}td.media-icon{text-align:center;width:80px;padding-top:8px;padding-bottom:8px}td.media-icon img{max-width:80px;max-height:60px}.list-ajax-loading{float:right;margin-right:9px;margin-top:-1px}.tablenav .list-ajax-loading{margin-top:7px}#howto{font-size:11px;margin:0 5px;display:block}.importers td{padding-right:14px}.importers{font-size:16px;width:auto}#namediv table{width:100%}#namediv td.first{width:10px;white-space:nowrap}#namediv input{width:98%}#namediv p{margin:10px 0}#submitdiv h3{margin-bottom:0!important}.zerosize{height:0;width:0;margin:0;border:0;padding:0;overflow:hidden;position:absolute}br.clear{height:2px;line-height:2px}.checkbox{border:0;margin:0;padding:0}fieldset{border:0;padding:0;margin:0}.post-categories{display:inline;margin:0;padding:0}.post-categories li{display:inline}.edit-box{display:none}h3:hover .edit-box{display:inline}.index-php form .input-text-wrap{background:#fff;border-style:solid;border-width:1px;padding:2px 3px;border-color:#ccc}#dashboard-widgets form .input-text-wrap input{border:0 none;outline:0;margin:0;padding:0;width:99%;color:#333}form .textarea-wrap{background:#fff;border-style:solid;border-width:1px;padding:2px;border-color:#ccc}#dashboard-widgets form .textarea-wrap textarea{border:0 none;padding:0;outline:0;width:99%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#dashboard-widgets .postbox form .submit{float:none;margin:.5em 0 0;padding:0;border:0}#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit input{margin:0}#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish{min-width:0}#dashboard-widgets a{text-decoration:none}#dashboard-widgets h3 a{text-decoration:underline}#dashboard-widgets h3 .postbox-title-action{position:absolute;right:30px;padding:0;top:5px}#dashboard-widgets h4{font-weight:normal;font-size:13px;margin:0 0 .2em;padding:0}#dashboard_right_now p.sub,#dashboard_right_now .table,#dashboard_right_now .versions{margin:-12px}#dashboard_right_now .inside{font-size:12px;padding-top:20px}#dashboard_right_now p.sub{padding:5px 0 15px;color:#8f8f8f;font-size:14px;position:absolute;top:-17px;left:15px}#dashboard_right_now .table{margin:0;padding:0;position:relative}#dashboard_right_now .table_content{float:left;border-top:#ececec 1px solid;width:45%}#dashboard_right_now .table_discussion{float:right;border-top:#ececec 1px solid;width:45%}#dashboard_right_now table td{padding:3px 0;white-space:nowrap}#dashboard_right_now table tr.first td{border-top:0}#dashboard_right_now td.b{padding-right:6px;text-align:right;font-size:14px;width:1%}#dashboard_right_now td.b a{font-size:18px}#dashboard_right_now td.b a:hover{color:#d54e21}#dashboard_right_now .t{font-size:12px;padding-right:12px;padding-top:6px;color:#777}#dashboard_right_now .t a{white-space:nowrap}#dashboard_right_now .spam{color:red}#dashboard_right_now .waiting{color:#e66f00}#dashboard_right_now .approved{color:green}#dashboard_right_now .versions{padding:6px 10px 12px;clear:both}#dashboard_right_now a.button{float:right;clear:right;position:relative;top:-5px}#dashboard_recent_comments h3{margin-bottom:0}#dashboard_recent_comments .inside{margin-top:0}#dashboard_recent_comments .comment-meta .approve{font-style:italic;font-family:sans-serif;font-size:10px}#dashboard_recent_comments .subsubsub{float:none;white-space:normal}#the-comment-list{position:relative}#the-comment-list .comment-item{padding:1em 10px;border-top:1px solid}#the-comment-list .pingback{padding-left:9px!important}#the-comment-list .comment-item,#the-comment-list #replyrow{margin:0 -10px}#the-comment-list .comment-item:first-child{border-top:0}#the-comment-list .comment-item .avatar{float:left;margin:0 10px 5px 0}#the-comment-list .comment-item h4{line-height:1.7em;margin-top:-0.4em;color:#777}#the-comment-list .comment-item h4 cite{font-style:normal;font-weight:normal}#the-comment-list .comment-item blockquote,#the-comment-list .comment-item blockquote p{margin:0;padding:0;display:inline}#dashboard_recent_comments #the-comment-list .trackback blockquote,#dashboard_recent_comments #the-comment-list .pingback blockquote{display:block}#the-comment-list .comment-item p.row-actions{margin:3px 0 0;padding:0;font-size:12px}#dashboard_quick_press h4{font-family:sans-serif;float:left;width:5em;clear:both;font-weight:normal;text-align:right;font-size:12px}#dashboard_quick_press h4 label{margin-right:10px}#dashboard_quick_press .input-text-wrap,#dashboard_quick_press .textarea-wrap{margin:0 0 1em 5em}#dashboard_quick_press .wp-media-buttons{margin:0 0 .5em 5em;padding:0}#dashboard_quick_press .wp-media-buttons a{color:#777}#dashboard-widgets #dashboard_quick_press form p.submit{margin-left:4.6em}#dashboard-widgets #dashboard_quick_press form p.submit input{float:left}#dashboard-widgets #dashboard_quick_press form p.submit #save-post{margin:0 1em 0 10px}#dashboard-widgets #dashboard_quick_press form p.submit #publish{float:right}#dashboard-widgets #dashboard_quick_press form p.submit img.waiting{vertical-align:middle;visibility:hidden;margin:4px 6px 0 0}#dashboard_recent_drafts ul,#dashboard_recent_drafts p{margin:0;padding:0;word-wrap:break-word}#dashboard_recent_drafts ul{list-style:none}#dashboard_recent_drafts ul li{margin-bottom:1em}#dashboard_recent_drafts h4{line-height:1.7em;word-wrap:break-word}#dashboard_recent_drafts h4 abbr{font-weight:normal;font-family:sans-serif;font-size:12px;color:#999;margin-left:3px}.rss-widget ul{margin:0;padding:0;list-style:none}a.rsswidget{font-size:13px;line-height:1.7em}.rss-widget ul li{line-height:1.5em;margin-bottom:12px}.rss-widget span.rss-date{color:#999;font-size:12px;margin-left:3px}.rss-widget cite{display:block;text-align:right;margin:0 0 1em;padding:0}.rss-widget cite:before{content:'\2014'}#dashboard_plugins h4{line-height:1.7em}#dashboard_plugins h5{font-weight:normal;font-size:13px;margin:0;display:inline;line-height:1.4em}#dashboard_plugins h5 a{line-height:1.4em}#dashboard_plugins .inside span{font-size:12px;padding-left:5px}#dashboard_plugins p{margin:.3em 0 1.4em;line-height:1.4em}.dashboard-comment-wrap{overflow:hidden;word-wrap:break-word}#dashboard_browser_nag a.update-browser-link{font-size:1.2em;font-weight:bold}#dashboard_browser_nag a{text-decoration:underline}#dashboard_browser_nag p.browser-update-nag.has-browser-icon{padding-right:125px}#dashboard_browser_nag .browser-icon{margin-top:-35px}#dashboard_browser_nag.postbox.browser-insecure{background-color:#ac1b1b;border-color:#ac1b1b}#dashboard_browser_nag.postbox{background-color:#e29808;background-image:none;border-color:#edc048;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;color:#fff}#dashboard_browser_nag.postbox.browser-insecure h3{border-bottom-color:#cd5a5a;color:#fff}#dashboard_browser_nag.postbox h3{border-bottom-color:#f6e2ac;text-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;background:transparent none;color:#fff}#dashboard_browser_nag a{color:#fff}#dashboard_browser_nag.browser-insecure a.browse-happy-link,#dashboard_browser_nag.browser-insecure a.update-browser-link{text-shadow:#871b15 0 1px 0}#dashboard_browser_nag a.browse-happy-link,#dashboard_browser_nag a.update-browser-link{text-shadow:#d29a04 0 1px 0}.login *{margin:0;padding:0}.login form{margin-left:8px;padding:26px 24px 46px;font-weight:normal;background:#fff;border:1px solid #e5e5e5;-moz-box-shadow:rgba(200,200,200,0.7) 0 4px 10px -1px;-webkit-box-shadow:rgba(200,200,200,0.7) 0 4px 10px -1px;box-shadow:rgba(200,200,200,0.7) 0 4px 10px -1px}.login form .forgetmenot{font-weight:normal;float:left;margin-bottom:0}.login .button-primary{font-size:13px!important;line-height:16px;padding:3px 10px;float:right}#login form p{margin-bottom:0}#login form p.submit{padding:0}.login label{color:#777;font-size:14px}.login form .forgetmenot label{font-size:12px;line-height:19px}.login form p{margin-bottom:24px}.login h1 a{background-image:url('../images/wordpress-logo.png?ver=20120216');background-size:274px 63px;background-position:top center;background-repeat:no-repeat;width:326px;height:67px;text-indent:-9999px;overflow:hidden;padding-bottom:15px;display:block}@media only screen and (-webkit-min-device-pixel-ratio:1.5){.login h1 a{background-image:url('../images/wordpress-logo-2x.png?ver=20120412');background-size:274px 63px}.wp-badge{background-image:url('../images/wp-badge-2x.png?ver=20120516');background-size:173px 194px}}#login{width:320px;padding:114px 0 0;margin:auto}#login_error,.login .message{margin:0 0 16px 8px;padding:12px}.login #nav,.login #backtoblog{text-shadow:#fff 0 1px 0;margin:0 0 0 16px;padding:16px 16px 0}#backtoblog{padding:12px 16px 0}.login form .input,.login input[type="text"]{color:#555;font-weight:200;font-size:24px;line-height:1;width:100%;padding:3px;margin-top:2px;margin-right:6px;margin-bottom:16px;border:1px solid #e5e5e5;background:#fbfbfb;outline:0;-moz-box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2);-webkit-box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2);box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2)}.login #pass-strength-result{width:250px;font-weight:bold;border-style:solid;border-width:1px;margin:12px 0 6px;padding:6px 5px;text-align:center}.mobile #login{padding:20px 0}.mobile #login form,.mobile #login .message,.mobile #login_error{margin-left:0}.mobile #login #nav,.mobile #login #backtoblog{margin-left:8px}.mobile #login h1 a{width:auto}#dashboard_right_now p.musub{margin-top:12px;border-top:1px solid #ececec;padding-left:16px;position:static}.rtl #dashboard_right_now p.musub{padding-left:0;padding-right:16px}#dashboard_right_now td.b a.musublink{font-size:16px}#dashboard_right_now div.musubtable{border-top:0}#dashboard_right_now div.musubtable .t{white-space:normal}.wp-list-table .site-deleted{background:#ff8573}.wp-list-table .site-spammed{background:#faafaa}.wp-list-table .site-archived{background:#ffebe8}.wp-list-table .site-mature{background:#fecac2}#nav-menus-frame{margin-left:300px}#wpbody-content #menu-settings-column{display:inline;width:281px;margin-left:-300px;clear:both;float:left;padding-top:24px}.no-js #wpbody-content #menu-settings-column{padding-top:31px}#menu-settings-column .inside{clear:both}.metabox-holder-disabled .postbox{opacity:.5;filter:alpha(opacity=50)}.metabox-holder-disabled .button-controls .select-all{display:none}#wpbody{position:relative}#menu-management-liquid{float:left;min-width:100%}#menu-management{position:relative;margin-right:20px;margin-top:-3px;width:100%}#menu-management .menu-edit{margin-bottom:20px}.nav-menus-php #post-body{padding:10px;border-width:1px 0;border-style:solid}#nav-menu-header,#nav-menu-footer{padding:0 10px}#nav-menu-header{border-bottom:1px solid}#nav-menu-footer{border-top:1px solid}.nav-menus-php #post-body div.updated,.nav-menus-php #post-body div.error{margin:0}.nav-menus-php #post-body-content{position:relative;float:none}#menu-management .menu-add-new abbr{font-weight:bold}#menu-management .nav-tabs-nav{margin:0 20px}#menu-management .nav-tabs-arrow{width:10px;padding:0 5px 4px;cursor:pointer;position:absolute;top:0;line-height:22px;font-size:18px;text-shadow:0 1px 0 #fff}#menu-management .nav-tabs-arrow-left{left:0}#menu-management .nav-tabs-arrow-right{right:0;text-align:right}#menu-management .nav-tabs-wrapper{width:100%;height:28px;margin-bottom:-1px;overflow:hidden}#menu-management .nav-tabs{padding-left:20px;padding-right:10px}.js #menu-management .nav-tabs{float:left;margin-left:0;margin-right:-400px}#menu-management .nav-tab{margin-bottom:0;font-size:14px}#select-nav-menu-container{text-align:right;padding:0 10px 3px 10px;margin-bottom:5px}#select-nav-menu{width:100px;display:inline}#menu-name-label{margin-top:-2px}#wpbody .open-label{display:block;float:left}#wpbody .open-label span{padding-right:10px}.js .input-with-default-title{font-style:italic}#menu-management .inside{padding:0 10px}.postbox .howto input{width:180px;float:right}.customlinkdiv .howto input{width:200px}#nav-menu-theme-locations .howto select{width:100%}#nav-menu-theme-locations .button-controls{text-align:right}.add-menu-item-view-all{height:400px}#menu-container .submit{margin:0 0 10px;padding:0}.nav-menus-php .meta-sep,.nav-menus-php .submitdelete,.nav-menus-php .submitcancel{display:block;float:left;margin:4px 0;line-height:15px}.meta-sep{padding:0 2px}#cancel-save{text-decoration:underline;font-size:12px;margin-left:20px;margin-top:5px}.list-controls{float:left;margin-top:5px}.add-to-menu{float:right}.postbox img.waiting{display:none;vertical-align:middle}.button-controls{clear:both;margin:10px 0}.show-all,.hide-all{cursor:pointer}.hide-all{display:none}#menu-name{width:270px}#manage-menu .inside{padding:0}#available-links dt{display:block}#add-custom-link .howto{font-size:12px}#add-custom-link label span{display:block;float:left;margin-top:5px;padding-right:5px}.menu-item-textbox{width:180px}.nav-menus-php .howto span{margin-top:4px;display:block;float:left}.quick-search{width:190px}.nav-menus-php .list-wrap{display:none;clear:both;margin-bottom:10px}.nav-menus-php .list-container{max-height:200px;overflow-y:auto;padding:10px 10px 5px}.nav-menus-php .postbox p.submit{margin-bottom:0}.nav-menus-php .list li{display:none;margin:0;margin-bottom:5px}.nav-menus-php .list li .menu-item-title{cursor:pointer;display:block}.nav-menus-php .list li .menu-item-title input{margin-right:3px;margin-top:-3px}#menu-container .inside{padding-bottom:10px}.menu{padding-top:1em}#menu-to-edit{padding:1em 0}.menu ul{width:100%}.menu li{margin-bottom:0;position:relative}.menu-item-bar{clear:both;line-height:1.5em;position:relative;margin:13px 0 0 0}.menu-item-handle{border:1px solid #dfdfdf;position:relative;padding-left:10px;height:auto;width:400px;line-height:35px;text-shadow:0 1px 0 #fff;overflow:hidden;word-wrap:break-word}#menu-to-edit .menu-item-invalid .menu-item-handle{background-color:#f6c9cc;background-image:-ms-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-moz-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-o-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-webkit-gradient(linear,left bottom,left top,from(#f6c9cc),to(#fdf8ff));background-image:-webkit-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:linear-gradient(bottom,#f6c9cc,#fdf8ff)}.menu-item-edit-active .menu-item-handle{-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.no-js .menu-item-edit-active .item-edit{display:none}.js .menu-item-handle{cursor:move}.menu li.deleting .menu-item-handle{background-image:none;text-shadow:0}.menu-item-handle .item-title{font-size:12px;font-weight:bold;padding:7px 0;line-height:20px;display:block;margin-right:13em}li.menu-item.ui-sortable-helper dl{margin-top:0}li.menu-item.ui-sortable-helper .menu-item-transport dl{margin-top:13px}.menu .sortable-placeholder{height:35px;width:410px;margin-top:13px}.menu-item-depth-0{margin-left:0}.menu-item-depth-1{margin-left:30px}.menu-item-depth-2{margin-left:60px}.menu-item-depth-3{margin-left:90px}.menu-item-depth-4{margin-left:120px}.menu-item-depth-5{margin-left:150px}.menu-item-depth-6{margin-left:180px}.menu-item-depth-7{margin-left:210px}.menu-item-depth-8{margin-left:240px}.menu-item-depth-9{margin-left:270px}.menu-item-depth-10{margin-left:300px}.menu-item-depth-11{margin-left:330px}.menu-item-depth-0 .menu-item-transport{margin-left:0}.menu-item-depth-1 .menu-item-transport{margin-left:-30px}.menu-item-depth-2 .menu-item-transport{margin-left:-60px}.menu-item-depth-3 .menu-item-transport{margin-left:-90px}.menu-item-depth-4 .menu-item-transport{margin-left:-120px}.menu-item-depth-5 .menu-item-transport{margin-left:-150px}.menu-item-depth-6 .menu-item-transport{margin-left:-180px}.menu-item-depth-7 .menu-item-transport{margin-left:-210px}.menu-item-depth-8 .menu-item-transport{margin-left:-240px}.menu-item-depth-9 .menu-item-transport{margin-left:-270px}.menu-item-depth-10 .menu-item-transport{margin-left:-300px}.menu-item-depth-11 .menu-item-transport{margin-left:-330px}body.menu-max-depth-0{min-width:950px!important}body.menu-max-depth-1{min-width:980px!important}body.menu-max-depth-2{min-width:1010px!important}body.menu-max-depth-3{min-width:1040px!important}body.menu-max-depth-4{min-width:1070px!important}body.menu-max-depth-5{min-width:1100px!important}body.menu-max-depth-6{min-width:1130px!important}body.menu-max-depth-7{min-width:1160px!important}body.menu-max-depth-8{min-width:1190px!important}body.menu-max-depth-9{min-width:1220px!important}body.menu-max-depth-10{min-width:1250px!important}body.menu-max-depth-11{min-width:1280px!important}.item-type{font-size:12px;padding-right:10px}.item-controls{font-size:12px;position:absolute;right:20px;top:-1px}.item-controls a{text-decoration:none}.item-controls a:hover{cursor:pointer}.item-controls .item-order{padding-right:10px}.nav-menus-php .item-edit{position:absolute;right:-20px;top:0;display:block;width:30px;height:36px;overflow:hidden;text-indent:-999em;border-bottom:1px solid;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.menu-instructions-inactive{display:none}.menu-item-settings{display:block;width:400px;padding:10px 0 10px 10px;border:solid;border-width:0 1px 1px 1px;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.menu-item-edit-active .menu-item-settings{display:block}.menu-item-edit-inactive .menu-item-settings{display:none}.add-menu-item-pagelinks{margin:.5em auto;text-align:center}.link-to-original{display:block;margin:0 0 10px;padding:3px 5px 5px;font-size:12px;font-style:italic}.link-to-original a{padding-left:4px;font-style:normal}.hidden-field{display:none}.menu-item-settings .description-thin,.menu-item-settings .description-wide{margin-right:10px;float:left}.description-thin{width:190px;height:40px}.description-wide{width:390px}.menu-item-actions{padding-top:15px}#cancel-save{cursor:pointer}.nav-menus-php .major-publishing-actions{clear:both;padding:3px 0 5px}.nav-menus-php .major-publishing-actions .publishing-action{text-align:right;float:right;line-height:23px;margin:5px 0 1px}.nav-menus-php .major-publishing-actions .delete-action{vertical-align:middle;text-align:left;float:left;padding-right:15px;margin-top:5px}.menu-name-label span,.auto-add-pages label{font-size:12px;font-style:normal}.menu-name-label{margin-right:15px}.auto-add-pages input{margin-top:0}.auto-add-pages{margin-top:4px;float:left}.nav-menus-php .submitbox .submitcancel{border-bottom:1px solid;padding:1px 2px;text-decoration:none}.nav-menus-php .major-publishing-actions .form-invalid{padding-left:4px;margin-left:-4px;border:0 none}#menu-item-name-wrap:after,#menu-item-url-wrap:after,#menu-name-label:after,#menu-settings-column .inside:after,#nav-menus-frame:after,.nav-menus-php #post-body-content:after,.nav-menus-php .button-controls:after,.nav-menus-php .major-publishing-actions:after,.nav-menus-php .menu-item-settings:after{clear:both;content:".";display:block;height:0;visibility:hidden}#nav-menus-frame,.button-controls,#menu-item-url-wrap,#menu-item-name-wrap{display:block}div.star-holder{position:relative;height:17px;width:100px;background:url('../images/stars.png?ver=20120307') repeat-x bottom left}div.star-holder .star-rating{background:url('../images/stars.png?ver=20120307') repeat-x top left;height:17px;float:left}div.action-links{font-weight:normal;margin:6px 0 0}#plugin-information-header{margin:0;padding:0 5px;font-weight:bold;position:relative;border-bottom-width:1px;border-bottom-style:solid;height:2.5em}#plugin-information ul#sidemenu{font-weight:normal;margin:0 5px;position:absolute;left:0;bottom:-1px}#plugin-information p.action-button{width:100%;padding-bottom:0;margin-bottom:0;margin-top:10px;-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:3px}#plugin-information .action-button a{text-align:center;font-weight:bold;text-decoration:none;display:block;line-height:2em}#plugin-information h2{clear:none!important;margin-right:200px}#plugin-information .fyi{margin:0 10px 50px;width:210px}#plugin-information .fyi h2{font-size:.9em;margin-bottom:0;margin-right:0}#plugin-information .fyi h2.mainheader{padding:5px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px}#plugin-information .fyi ul{padding:10px 5px 10px 7px;margin:0;list-style:none;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}#plugin-information .fyi li{margin-right:0}#plugin-information #section-holder{padding:10px}#plugin-information .section ul,#plugin-information .section ol{margin-left:16px;list-style-type:square;list-style-image:none}#plugin-information #section-screenshots ol{list-style:none;margin:0}#plugin-information #section-screenshots li img{vertical-align:text-top;max-width:100%;width:auto;height:auto}#plugin-information #section-screenshots li p{font-style:italic;padding-left:20px;padding-bottom:2em}#plugin-information #section-screenshots ol,#plugin-information .updated,#plugin-information pre{margin-right:215px}#plugin-information pre{padding:7px;overflow:auto}body.press-this{color:#333;margin:0;padding:0;min-width:675px;min-height:400px}img{border:0}.press-this #wphead{height:32px;margin-left:0;margin-right:0;margin-bottom:5px}.press-this #header-logo{float:left;margin:7px 7px 0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.press-this #wphead h1{font-weight:normal;font-size:16px;line-height:32px;margin:0;float:left}.press-this #wphead h1 a{text-decoration:none}.press-this #wphead h1 a:hover{text-decoration:underline}.press-this #message{margin:10px 0}.press-this-sidebar{float:right;width:200px;padding-top:10px}.press-this #title{margin-left:0;margin-right:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.press-this .tagchecklist span a{background:transparent url(../images/xit.gif) no-repeat 0 0}.press-this #titlediv{margin:0}.press-this .wp-media-buttons{cursor:default;padding:8px 8px 0}.press-this .howto{margin-top:2px;margin-bottom:3px;font-size:12px;font-style:italic;display:block}.press-this #poststuff{margin:0 10px 10px}#poststuff #editor-toolbar{height:30px}div.zerosize{border:0 none;height:0;margin:0;overflow:hidden;padding:0;width:0}.posting{margin-right:212px;position:relative}.press-this .inner-sidebar{width:200px}.press-this .inner-sidebar .sleeve{padding-top:5px}.press-this #submitdiv p{margin:0;padding:6px}.press-this #submitdiv #publishing-actions{border-bottom:1px solid #dfdfdf}.press-this #publish{float:right}.press-this #poststuff h2,.press-this #poststuff h3{font-size:14px;line-height:1}.press-this #tagsdiv-post_tag h3,.press-this #categorydiv h3{cursor:pointer}.press-this #submitdiv h3{cursor:default}h3.tb{text-shadow:0 1px 0 #fff;font-weight:bold;font-size:12px;margin-left:5px}#TB_window{border:1px solid #333}.press-this .postbox,.press-this .stuffbox{margin-bottom:10px;min-width:0}.postbox:hover .handlediv,.stuffbox:hover .handlediv{background:transparent url(../images/arrows.png) no-repeat 6px 7px}.press-this #submitdiv:hover .handlediv{background:0}.tbtitle{font-size:1.7em;outline:0;padding:3px 4px;border-color:#dfdfdf}.press-this .actions{float:right;margin:-19px 0 0}.press-this #extra-fields .actions{margin:-25px -7px 0 0}.press-this .actions li{float:left;list-style:none;margin-right:10px}#extra-fields .button{margin-right:5px}#photo_saving{margin:0 8px 8px;vertical-align:middle}#img_container_container{overflow:auto}#extra-fields{margin-top:10px;position:relative}#extra-fields h2{margin:12px}#waiting{margin-top:10px}#extra-fields .postbox{margin-bottom:5px}#extra-fields .titlewrap{padding:0;overflow:auto;height:100px}#img_container a{display:block;float:left;overflow:hidden;vertical-align:center}#img_container img,#img_container a{width:68px;height:68px}#img_container img{border:0;background-color:#f4f4f4;cursor:pointer}#img_container a,#img_container a:link,#img_container a:visited{border:1px solid #ccc;display:block;position:relative}#img_container a:hover,#img_container a:active{border-color:#000;z-index:1000;border-width:2px;margin:-1px}#embed-code{width:100%;height:98px}.press-this .categorydiv div.tabs-panel{height:100px}.press-this .tagsdiv .newtag{width:130px}.press-this #content{margin:5px 0;padding:0 5px;border:0 none;height:357px;font-family:Consolas,Monaco,monospace;font-size:13px;line-height:19px;background:transparent}#saving{display:inline;vertical-align:middle}#TB_ajaxContent #options{position:absolute;top:20px;right:25px;padding:5px}#TB_ajaxContent h3{margin-bottom:.25em}.error a{text-decoration:underline}.updated a{text-decoration:none;padding-bottom:2px}.taghint{color:#aaa;margin:-17px 0 0 7px;visibility:hidden}input.newtag ~ div.taghint{visibility:visible}input.newtag:focus ~ div.taghint{visibility:hidden}#mce_fullscreen_container{background:#fff}#photo-add-url-div input[type="text"]{width:300px}.alignleft h3{margin:0}h3 span{font-weight:normal}#template textarea{font-family:Consolas,Monaco,monospace;font-size:12px;width:97%;background:#f9f9f9;outline:0}#template p{width:97%}#templateside{float:right;width:190px;word-wrap:break-word}#templateside h3,#postcustomstuff p.submit{margin:0}#templateside h4{margin:1em 0 0}#templateside ol,#templateside ul{margin:.5em;padding:0}#templateside li{margin:4px 0}#templateside ul li a span.highlight{display:block}.nonessential{font-size:11px;font-style:italic;padding-left:12px}.highlight{padding:3px 3px 3px 12px;margin-left:-12px;font-weight:bold;border:0 none}#documentation{margin-top:10px}#documentation label{line-height:22px;vertical-align:top;font-weight:bold}.fileedit-sub{padding:10px 0 8px;line-height:180%}#filter-box{clear:both}.feature-filter{padding:8px 12px 0}.feature-filter .feature-group{float:left;margin:5px 10px 10px}.feature-filter .feature-group li{display:inline;float:left;list-style-type:none;padding-right:25px;width:150px}.feature-container{width:100%;overflow:auto;margin-bottom:10px}div.widget-liquid-left{float:left;clear:left;width:100%;margin-right:-325px}div#widgets-left{margin-left:5px;margin-right:325px}div#widgets-right{width:285px;margin:0 auto}div.widget-liquid-right{float:right;clear:right;width:300px}.widget-liquid-right .widget,.inactive-sidebar .widget,.widget-liquid-right .sidebar-description{width:250px;margin:0 auto 20px;overflow:hidden}.widget-liquid-right .sidebar-description{margin-bottom:10px}.inactive-sidebar .widget{margin:0 10px 20px;float:left}div.sidebar-name h3{font-weight:normal;font-size:15px;margin:0;padding:8px 10px;overflow:hidden;white-space:nowrap}div.sidebar-name{cursor:pointer;font-size:13px;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}.js .closed .sidebar-name{-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.widget-liquid-right .widgets-sortables,#widgets-left .widget-holder{border-width:0 1px 1px;border-style:none solid solid;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.js .closed .widgets-sortables,.js .closed .widget-holder{display:none}.widget-liquid-right .widgets-sortables{padding:15px 0 0}#available-widgets .widget-holder{padding:7px 5px 0}#available-widgets .widget{-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.inactive-sidebar{padding:5px 5px 0}#widget-list .widget{width:250px;margin:0 10px 15px;border:0 none;background:transparent;float:left}#widget-list .widget-description{padding:5px 8px}.widget-placeholder{border-width:1px;border-style:dashed;margin:0 auto 20px;height:26px;width:250px}.inactive-sidebar .widget-placeholder{margin:0 10px 20px;float:left}div.widgets-holder-wrap{padding:0;margin:10px 0 20px}#widgets-left #available-widgets{background-color:transparent;border:0 none}ul#widget-list{list-style:none;margin:0;padding:0;min-height:100px}.widget .widget-top{margin-bottom:-1px;font-size:12px;font-weight:bold;height:26px;overflow:hidden}.widget-top .widget-title{padding:7px 9px}.widget-top .widget-title-action{float:right}a.widget-action{display:block;width:24px;height:26px}#available-widgets a.widget-action{display:none}.widget-top a.widget-action{background:transparent url(../images/arrows.png) no-repeat 4px 6px}.widget-top a.widget-action:hover{background:transparent url(../images/arrows-dark.png) no-repeat 4px 6px}.widget .widget-inside,.widget .widget-description{padding:12px 12px 10px;font-size:12px;line-height:16px}.widget-inside,.widget-description{display:none}#available-widgets .widget-description{display:block}.widget .widget-inside p{margin:0 0 1em;padding:0}.widget-title h4{margin:0;line-height:1;overflow:hidden;white-space:nowrap}.widgets-sortables{min-height:90px}.widget-control-actions{margin-top:8px}.widget-control-actions a{text-decoration:none}.widget-control-actions a:hover{text-decoration:underline}.widget-control-actions .ajax-feedback{padding-bottom:3px}.widget-control-actions div.alignleft{margin-top:6px}div#sidebar-info{padding:0 1em;margin-bottom:1em;font-size:12px}.widget-title a,.widget-title a:hover{text-decoration:none;border-bottom:0}.widget-control-edit{display:block;font-size:12px;font-weight:normal;line-height:26px;padding:0 8px 0 0}a.widget-control-edit{text-decoration:none}.widget-control-edit .add,.widget-control-edit .edit{display:none}#available-widgets .widget-control-edit .add,#widgets-right .widget-control-edit .edit,.inactive-sidebar .widget-control-edit .edit{display:inline}.editwidget{margin:0 auto 15px}.editwidget .widget-inside{display:block;padding:10px}.inactive p.description{margin:5px 15px 10px}#available-widgets p.description{margin:0 12px 12px}.widget-position{margin-top:8px}.inactive{padding-top:2px}.sidebar-name-arrow{float:right;height:29px;width:26px}.widget-title .in-widget-title{font-size:12px;white-space:nowrap}#removing-widget{display:none;font-weight:normal;padding-left:15px;font-size:12px;line-height:1}.widget-control-noform,#access-off,.widgets_access .widget-action,.widgets_access .sidebar-name-arrow,.widgets_access #access-on,.widgets_access .widget-holder .description{display:none}.widgets_access .widget-holder,.widgets_access #widget-list{padding-top:10px}.widgets_access #access-off{display:inline}.widgets_access #wpbody-content .widget-title-action,.widgets_access #wpbody-content .widget-control-edit,.widgets_access .closed .widgets-sortables,.widgets_access .closed .widget-holder{display:block}.widgets_access .closed .sidebar-name{-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.widgets_access .sidebar-name,.widgets_access .widget .widget-top{cursor:default}@media only screen and (max-width:768px){#col-left{width:100%}#col-right{width:100%}}@media only screen and (min-width:769px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:860px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (min-width:980px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:768px){#col-left{width:100%}#col-right{width:100%}.form-field input,.form-field textarea{width:99%}.form-wrap .form-field{padding:0}#profile-page .form-table textarea{max-width:400px;width:auto}}.locale-zh-cn .howto,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn #utc-time,.locale-zh-cn #local-time,.locale-zh-cn p.install-help,.locale-zh-cn p.help,.locale-zh-cn p.description,.locale-zh-cn span.description,.locale-zh-cn .form-wrap p{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #wp-fullscreen-tagline{font-family:KaiTi,"楷体",sans-serif}.locale-zh-cn #wp-fullscreen-modes a{font-size:12px}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-ru-ru #dashboard_quick_press .input-text-wrap,.locale-ru-ru #dashboard_quick_press .textarea-wrap,.locale-ru-ru #dashboard_quick_press .wp-media-buttons{margin-left:5.7em}.locale-ru-ru #dashboard_quick_press h4{width:5.7em}.locale-ru-ru #dashboard-widgets #dashboard_quick_press form p.submit{margin-left:5.3em}.locale-ru-ru .inline-edit-row fieldset label span.title{width:auto;min-width:5em}.locale-ru-ru.press-this .posting{margin-right:257px}.locale-ru-ru.press-this #photo-add-url-div input[type="text"]{width:255px}.locale-ru-ru.press-this #side-sortables{width:245px}.locale-lt-lt #dashboard_quick_press .input-text-wrap,.locale-lt-lt #dashboard_quick_press .textarea-wrap,.locale-lt-lt #dashboard_quick_press .wp-media-buttons{margin-left:7em}.locale-lt-lt #dashboard_quick_press h4{width:7em}.locale-lt-lt .inline-edit-row fieldset label span.title{width:8em}.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em} \ No newline at end of file --- 1 ---- ! #wpwrap{height:auto;min-height:100%;width:100%;position:relative}#wpcontent{height:100%}#wpcontent,#footer{margin-left:165px}.folded #wpcontent,.folded #footer{margin-left:52px}#wpbody-content{padding-bottom:65px;float:left;width:100%}#adminmenuback,#adminmenuwrap,#adminmenu,#adminmenu .wp-submenu,#adminmenu .wp-submenu-wrap,.folded #adminmenu .wp-has-current-submenu .wp-submenu{width:145px}#adminmenuback{position:absolute;top:0;bottom:0;z-index:-1}#adminmenu{clear:left;margin:0;padding:0;list-style:none}.folded #adminmenuback,.folded #adminmenuwrap,.folded #adminmenu,.folded #adminmenu li.menu-top{width:32px}.inner-sidebar{float:right;clear:right;display:none;width:281px;position:relative}.columns-2 .inner-sidebar{margin-right:auto;width:286px;display:block}.inner-sidebar #side-sortables,.columns-2 .inner-sidebar #side-sortables{min-height:300px;width:280px;padding:0}.has-right-sidebar .inner-sidebar{display:block}.has-right-sidebar #post-body{float:left;clear:left;width:100%;margin-right:-2000px}.has-right-sidebar #post-body-content{margin-right:300px;float:none;width:auto}#col-container,#col-left,#col-right{overflow:hidden;padding:0;margin:0}#col-left{width:35%}#col-right{float:right;clear:right;width:65%}.col-wrap{padding:0 7px}.alignleft{float:left}.alignright{float:right}.textleft{text-align:left}.textright{text-align:right}.clear{clear:both}.screen-reader-text,.screen-reader-text span{position:absolute;left:-1000em;height:1px;width:1px;overflow:hidden}.hidden,.js .closed .inside,.js .hide-if-js,.no-js .hide-if-no-js{display:none}input[type="text"],input[type="password"],input[type="number"],input[type="search"],input[type="email"],input[type="url"],textarea{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}input[type="checkbox"],input[type="radio"]{vertical-align:text-top;padding:0;margin:1px 0 0}input[type="search"]{-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration{display:none}html,body{height:100%;margin:0;padding:0}body{font-family:sans-serif;font-size:12px;line-height:1.4em;min-width:600px}body.iframe{min-width:0}body.login{background:#fbfbfb;min-width:0}iframe,img{border:0}td,textarea,input,select{font-family:inherit;font-size:inherit;font-weight:inherit}td,textarea{line-height:inherit}input,select{line-height:15px}a,input,select{outline:0}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}p{margin:1em 0}blockquote{margin:1em}label{cursor:pointer}li,dd{margin-bottom:6px}textarea,input,select{margin:1px;padding:3px}h1,h2,h3,h4,h5,h6{display:block;font-weight:bold}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}ul,ol{padding:0}ul{list-style:none}ol{list-style-type:decimal;margin-left:2em}ul.ul-disc{list-style:disc outside}ul.ul-square{list-style:square outside}ol.ol-decimal{list-style:decimal outside}ul.ul-disc,ul.ul-square,ol.ol-decimal{margin-left:1.8em}ul.ul-disc>li,ul.ul-square>li,ol.ol-decimal>li{margin:0 0 .5em}.code,code{font-family:Consolas,Monaco,monospace}kbd,code{padding:1px 3px;margin:0 1px;font-size:11px}.subsubsub{list-style:none;margin:8px 0 5px;padding:0;white-space:nowrap;font-size:12px;float:left}.subsubsub a{line-height:2;padding:.2em;text-decoration:none}.subsubsub a .count,.subsubsub a.current .count{color:#999;font-weight:normal}.subsubsub a.current{font-weight:bold;background:0;border:0}.subsubsub li{display:inline;margin:0;padding:0}.widefat,div.updated,div.error,.wrap .add-new-h2,textarea,input[type="text"],input[type="password"],input[type="file"],input[type="button"],input[type="submit"],input[type="reset"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select,.tablenav .tablenav-pages a,.tablenav-pages span.current,#titlediv #title,.postbox,#postcustomstuff table,#postcustomstuff input,#postcustomstuff textarea,.imgedit-menu div,.plugin-update-tr .update-message,#poststuff .inside .the-tagcloud,.login form,#login_error,.login .message,#menu-management .menu-edit,.nav-menus-php .list-container,.menu-item-handle,.link-to-original,.nav-menus-php .major-publishing-actions .form-invalid,.press-this #message,#TB_window,.tbtitle,.highlight,.feature-filter,#widget-list .widget-top,.editwidget .widget-inside{-webkit-border-radius:3px;border-radius:3px;border-width:1px;border-style:solid}.widefat{border-spacing:0;width:100%;clear:both;margin:0}.widefat *{word-wrap:break-word}.widefat a{text-decoration:none}.widefat thead th:first-of-type{-webkit-border-top-left-radius:3px;border-top-left-radius:3px}.widefat thead th:last-of-type{-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.widefat tfoot th:first-of-type{-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.widefat tfoot th:last-of-type{-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.widefat td,.widefat th{border-width:1px 0;border-style:solid}.widefat tfoot th{border-bottom:0}.widefat .no-items td{border-bottom-width:0}.widefat td{font-size:12px;padding:4px 7px 2px;vertical-align:top}.widefat td p,.widefat td ol,.widefat td ul{font-size:12px}.widefat th{padding:7px 7px 8px;text-align:left;line-height:1.3em;font-size:14px}.widefat th input{margin:0 0 0 8px;padding:0;vertical-align:text-top}.widefat .check-column{width:2.2em;padding:11px 0 0;vertical-align:top}.widefat tbody th.check-column{padding:9px 0 22px}.widefat .num,.column-comments,.column-links,.column-posts{text-align:center}.widefat th#comments{vertical-align:middle}.wrap{margin:4px 15px 0 0}div.updated,div.error{padding:0 .6em;margin:5px 15px 2px}div.updated p,div.error p{margin:.5em 0;padding:2px}.wrap div.updated,.wrap div.error,.media-upload-form div.error{margin:5px 0 15px}.wrap h2,.subtitle{font-weight:normal;margin:0;text-shadow:#fff 0 1px 0}.wrap h2{font-size:23px;padding:9px 15px 4px 0;line-height:29px}.subtitle{font-size:14px;padding-left:25px}.wrap .add-new-h2{font-family:sans-serif;margin-left:4px;padding:3px 8px;position:relative;top:-3px;text-decoration:none;font-size:12px;border:0 none}.wrap h2.long-header{padding-right:0}div.sidebar-name h3,#menu-management .nav-tab,#dashboard_plugins h5,a.rsswidget,#dashboard_right_now td.b,#dashboard-widgets h4,.tool-box .title,#poststuff h3,.metabox-holder h3,.pressthis a,#your-profile legend,.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title,.tablenav .displaying-num,.widefat th,.quicktags,.search{font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif}h2 .nav-tab,.wrap h2,.subtitle,.login form .input{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif}.quicktags,.search{font-size:12px}.icon32{float:left;height:34px;margin:7px 8px 0 0;width:36px}.icon16{height:18px;width:18px;padding:6px 6px;margin:-6px 0 0 -8px;float:left}.key-labels label{line-height:24px}.pre{white-space:pre-wrap;white-space:-moz-pre-wrap!important;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}.howto{font-style:italic;display:block;font-family:sans-serif}p.install-help{margin:8px 0;font-style:italic}.no-break{white-space:nowrap}.wp-admin select{padding:2px;height:2em}.wp-admin select[multiple]{height:auto}select option{padding:2px}.submit{padding:1.5em 0;margin:5px 0;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}form p.submit a.cancel:hover{text-decoration:none}.submit input,.button,input.button,.button-primary,input.button-primary,.button-secondary,input.button-secondary,.button-highlighted,input.button-highlighted,#postcustomstuff .submit input{text-decoration:none;font-size:12px!important;line-height:13px;padding:3px 8px;cursor:pointer;border-width:1px;border-style:solid;-webkit-border-radius:11px;border-radius:11px;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}#minor-publishing-actions input,#major-publishing-actions input,#minor-publishing-actions .preview{min-width:80px;text-align:center}textarea.all-options,input.all-options{width:250px}input.large-text,textarea.large-text{width:99%}input.regular-text,#adduser .form-field input{width:25em}input.small-text{width:50px}input[type="number"].small-text{width:60px}#doaction,#doaction2,#post-query-submit{margin-right:8px}.tablenav select[name="action"],.tablenav select[name="action2"]{width:130px}.tablenav select[name="m"]{width:155px}.tablenav select#cat{width:170px}#wpcontent option{padding:2px}#timezone_string option{margin-left:1em}label,#your-profile label+a{vertical-align:middle}#misc-publishing-actions label{vertical-align:baseline}#pass-strength-result{border-style:solid;border-width:1px;float:left;margin:13px 5px 5px 1px;padding:3px 5px;text-align:center;width:200px;display:none}.indicator-hint{padding-top:8px}p.search-box{float:right;margin:0}input[type="text"].ui-autocomplete-loading{background:transparent url('../images/loading.gif') no-repeat right center;visibility:visible}ul#add-to-blog-users{margin:0 0 0 14px}.ui-autocomplete-input.open{border-bottom-right-radius:0;border-bottom-left-radius:0}.ui-autocomplete{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-width:1px;border-style:solid}.ui-autocomplete li{margin-bottom:0;white-space:nowrap;text-align:left}.ui-autocomplete li a{display:block;height:100%;padding:4px 10px}.ui-autocomplete li a.ui-state-hover{cursor:pointer}#major-publishing-actions{padding:10px 10px 8px;clear:both;border-top:1px solid #f5f5f5;margin-top:-2px}#delete-action{line-height:25px;vertical-align:middle;text-align:left;float:left}#publishing-action{text-align:right;float:right;line-height:23px}#misc-publishing-actions{padding:6px 0 0}.misc-pub-section{padding:6px 10px 8px;border-width:1px 0;border-style:solid}.misc-pub-section:first-child{border-top-width:0}.misc-pub-section-last{border-bottom-width:0}#minor-publishing-actions{padding:10px 10px 2px 8px;text-align:right}#minor-publishing{border-bottom-width:1px;border-bottom-style:solid;-webkit-box-shadow:0 1px 0 #fff;-moz-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff}#save-post{float:left}#minor-publishing .ajax-loading{padding:3px 0 0 4px;float:left}.preview{float:right}#sticky-span{margin-left:18px}.side-info{margin:0;padding:4px;font-size:11px}.side-info h5{padding-bottom:7px;font-size:14px;margin:12px 2px 5px;border-bottom-width:1px;border-bottom-style:solid}.side-info ul{margin:0;padding-left:18px;list-style:square}a.button,a.button-primary,a.button-secondary{line-height:15px;padding:3px 10px;white-space:nowrap;-webkit-border-radius:10px}.approve,.unapproved .unapprove{display:none}.unapproved .approve,.spam .approve,.trash .approve{display:inline}td.action-links,th.action-links{text-align:right}.describe .del-link{padding-left:5px}#update-nag,.update-nag{line-height:19px;padding:5px 0;font-size:12px;text-align:center;margin:-1px 15px 0 5px;border-width:1px;border-style:solid;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.plugins .plugin-update{padding:0}.plugin-update .update-message{margin:0 10px 8px 31px;font-weight:bold}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0}.ajax-feedback{visibility:hidden;vertical-align:bottom}#ajax-response.alignleft{margin-left:2em}#adminmenu a,#sidemenu a,#taglist a,#catlist a{text-decoration:none}#screen-options-wrap,#contextual-help-wrap{margin:0;padding:8px 20px 12px;position:relative;overflow:auto}#screen-meta .screen-reader-text{visibility:hidden}#screen-meta-links{margin:0 24px 0 0}#screen-meta{display:none;position:relative;margin:0 15px 0 5px;border-width:0 1px 1px;border-style:none solid solid}#screen-options-link-wrap,#contextual-help-link-wrap{float:right;height:23px;padding:0;margin:0 0 0 6px;font-family:sans-serif}#screen-options-link-wrap,#contextual-help-link-wrap,#screen-meta{-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}#screen-meta-links .screen-meta-toggle{position:relative;top:-1px}#screen-meta-links a.show-settings{text-decoration:none;z-index:1;padding:1px 16px 0 6px;height:22px;line-height:22px;font-size:12px;display:block;text-shadow:rgba(255,255,255,0.7) 0 1px 0}#screen-meta-links a.show-settings:hover{text-decoration:none}.toggle-arrow{background-repeat:no-repeat;background-position:top left;background-color:transparent;height:22px;line-height:22px;display:block}.toggle-arrow-active{background-position:bottom left}#screen-options-wrap h5,#contextual-help-wrap h5{margin:8px 0;font-size:13px}.metabox-prefs label{display:inline-block;padding-right:15px;white-space:nowrap;line-height:30px}.metabox-prefs label input{margin:0 5px 0 2px}.metabox-prefs .columns-prefs label input{margin:0 2px}.metabox-prefs label a{display:none}#contextual-help-wrap{padding:0;margin-left:-4px}#contextual-help-columns{position:relative}#contextual-help-back{position:absolute;top:0;bottom:0;left:150px;right:170px;border-width:0 1px;border-style:solid}#contextual-help-wrap.no-sidebar #contextual-help-back{right:0;border-right-width:0;-webkit-border-bottom-right-radius:2px;border-bottom-right-radius:2px}.contextual-help-tabs{float:left;width:150px;margin:0}.contextual-help-tabs ul{margin:1em 0}.contextual-help-tabs li{margin-bottom:0;list-style-type:none;border-style:solid;border-width:1px 0;border-color:transparent}.contextual-help-tabs a{display:block;padding:5px 5px 5px 12px;line-height:18px;text-decoration:none}.contextual-help-tabs .active{padding:0;margin:0 -1px 0 0;border-width:1px 0 1px 1px;border-style:solid}.contextual-help-tabs-wrap{padding:0 20px;overflow:auto}.help-tab-content{display:none;margin:0 22px 12px 0;line-height:1.6em}.help-tab-content.active{display:block}.help-tab-content li{list-style-type:disc;margin-left:18px}.contextual-help-sidebar{width:150px;float:right;padding:0 8px 0 12px;overflow:auto}#adminmenuback,#adminmenuwrap{border-width:0 1px 0 0;border-style:solid}#adminmenuwrap{position:relative;float:left}#adminmenushadow{position:absolute;top:0;right:0;bottom:0;width:6px;z-index:20}#adminmenu *{-webkit-user-select:none;-moz-user-select:none;user-select:none}#adminmenu .wp-submenu{list-style:none;padding:0;margin:0;overflow:hidden}#adminmenu li .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{display:none;position:absolute;top:-1px;left:146px;z-index:999;overflow:hidden}.js #adminmenu .wp-submenu.sub-open,.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.no-js #adminmenu .wp-has-submenu:hover .wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu li.focused .wp-submenu{display:block}#adminmenu .wp-has-current-submenu .wp-submenu{position:relative;z-index:2;top:auto;left:auto;right:auto;bottom:auto;padding:0}#adminmenu .wp-has-current-submenu .wp-submenu-wrap{-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.folded #adminmenu .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{top:-5px;left:26px}#adminmenu .wp-submenu.sub-open,#adminmenu li.focused.wp-not-current-submenu .wp-submenu,.folded #adminmenu li.focused.wp-has-current-submenu .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.no-js #adminmenu .wp-has-submenu:hover .wp-submenu,.no-js.folded #adminmenu .wp-has-current-submenu:hover .wp-submenu{padding:0 8px 8px 0}.no-js #adminmenu .wp-has-current-submenu:hover .wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu{padding:0}#adminmenu .wp-submenu a{font-size:12px;line-height:18px}#adminmenu a.menu-top,#adminmenu .wp-submenu-head{font-size:13px;line-height:18px}#adminmenu div.wp-submenu-head{display:none}.folded #adminmenu div.wp-submenu-head{display:block}.folded #adminmenu a.menu-top,body.no-js #adminmenu .wp-menu-toggle,.folded #adminmenu div.wp-menu-toggle{display:none}#adminmenu div.wp-menu-image{float:left;width:28px;height:28px}.folded #adminmenu div.wp-menu-image{width:30px}#adminmenu li{margin:0;padding:0;cursor:pointer}#adminmenu a{display:block;line-height:18px;padding:2px 5px}#adminmenu li.menu-top{min-height:29px;position:relative}#adminmenu a.menu-top{font-weight:bold;line-height:18px;min-width:10em;padding:5px 5px;border-width:1px 0 1px;border-style:solid}#adminmenu li.wp-menu-open{border-width:0 0 1px;border-style:solid}#adminmenu .wp-submenu ul{padding:4px 0}#adminmenu .wp-submenu a{margin:0}#adminmenu li li{margin-left:8px}#adminmenu .wp-submenu a,#adminmenu li li a,.folded #adminmenu .wp-not-current-submenu li a{padding-left:12px}#adminmenu .wp-not-current-submenu li a{padding-left:18px}.folded #adminmenu li li{margin-left:0}.folded #adminmenu li li a{padding-left:0}.wp-menu-arrow{display:none;cursor:auto;z-index:25;position:absolute;right:100%;margin:0;height:30px;width:6px;-moz-transform:translate(146px);-webkit-transform:translate(146px);-o-transform:translate(146px);-ms-transform:translate(146px);transform:translate(146px)}#adminmenu li.wp-has-current-submenu .wp-menu-arrow,#adminmenu li.menu-top:hover .wp-menu-arrow,#adminmenu li.current .wp-menu-arrow,#adminmenu li.focused .wp-menu-arrow,#adminmenu li.menu-top.wp-has-submenu:hover .wp-menu-arrow div{display:block}#adminmenu li.wp-not-current-submenu:hover .wp-menu-arrow div{display:none}#adminmenu li.menu-top:hover .wp-menu-arrow,#adminmenu li.menu-top.focused .wp-menu-arrow{z-index:1001}.ie8 #adminmenu li.menu-top:hover .wp-menu-arrow{display:none}#adminmenu .wp-menu-arrow div{position:absolute;top:7px;left:-1px;width:14px;height:15px;-moz-transform:matrix(-0.6,1,0.6,1,0,0);-webkit-transform:matrix(-0.6,1,0.6,1,0,0);-o-transform:matrix(-0.6,1,0.6,1,0,0);-ms-transform:matrix(-0.6,1,0.6,1,0,0);transform:matrix(-0.6,1,0.6,1,0,0)}#adminmenu li.wp-not-current-submenu .wp-menu-arrow{-moz-transform:translate(145px);-webkit-transform:translate(145px);-o-transform:translate(145px);-ms-transform:translate(145px);transform:translate(145px);height:28px;border-width:1px 0;border-style:solid}.folded .wp-menu-arrow{-moz-transform:translate(33px);-webkit-transform:translate(33px);-o-transform:translate(33px);-ms-transform:translate(33px);transform:translate(33px)}#adminmenu .wp-not-current-submenu .wp-menu-arrow div{width:15px;top:6px;border-width:0 0 1px 1px;border-style:solid}.wp-menu-arrow,.folded #adminmenu li.menu-top:hover .wp-menu-arrow{display:none}.folded #adminmenu li.current:hover .wp-menu-arrow,.folded #adminmenu li.menu-top.wp-menu-open:hover .wp-menu-arrow{display:block;z-index:125}#adminmenu .wp-submenu li{padding:0;margin:0}.folded #adminmenu li.menu-top{border-width:1px 0;border-style:solid none}#adminmenu .wp-menu-image img{float:left;padding:5px 0 0 2px;opacity:.6;filter:alpha(opacity=60)}#adminmenu li.menu-top:hover .wp-menu-image img,#adminmenu li.wp-has-current-submenu .wp-menu-image img{opacity:1;filter:alpha(opacity=100)}#adminmenu li.wp-menu-separator{height:3px;padding:0;margin:0;border-width:1px 0;border-style:solid;cursor:inherit}#adminmenu div.separator{height:1px;padding:0;border-width:1px 0 0 0;border-style:solid}#adminmenu .wp-submenu .wp-submenu-head{padding:6px 4px 5px 10px;cursor:default;border-width:1px 0;border-style:solid}#adminmenu li .wp-submenu-wrap{border-width:1px 1px 1px 0;border-style:solid solid solid none;position:relative;-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}#adminmenu li.wp-menu-open .wp-submenu-wrap{border:0 none}.folded #adminmenu .wp-submenu .wp-submenu-wrap{margin-top:3px}.folded #adminmenu .wp-has-current-submenu{margin-bottom:1px}.folded #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}.folded #adminmenu .wp-has-current-submenu .wp-submenu-wrap{margin-top:4px}.folded #adminmenu .wp-submenu ul{border-width:0 0 0 1px;border-style:solid}.folded #adminmenu .wp-submenu a{padding-left:10px}.folded #adminmenu a.wp-has-submenu{margin-left:40px}#adminmenu .wp-menu-toggle{width:18px;clear:right;float:right;margin:1px 0 0;height:27px;padding:1px 2px 0 0;cursor:pointer}#adminmenu .wp-menu-image a{height:24px}#adminmenu .awaiting-mod,#adminmenu span.update-plugins,#sidemenu li a span.update-plugins{position:absolute;font-family:sans-serif;font-size:9px;line-height:17px;font-weight:bold;margin-top:1px;margin-left:7px;-webkit-border-radius:10px;border-radius:10px}#adminmenu li .awaiting-mod span,#adminmenu li span.update-plugins span,#sidemenu li a span.update-plugins span{display:block;padding:0 6px}#adminmenu li span.count-0,#sidemenu li a .count-0{display:none}#collapse-menu{font-size:12px;line-height:34px}.folded #collapse-menu span{display:none}#collapse-button,#collapse-button div{width:15px;height:15px}#collapse-button{float:left;margin:8px 6px;border-width:1px;border-style:solid;-webkit-border-radius:10px;border-radius:10px}@media only screen and (max-width:900px){#wpcontent,#footer{margin-left:52px}#adminmenuback,#adminmenuwrap,#adminmenu,#adminmenu li.menu-top{width:32px}#adminmenu .wp-has-current-submenu .wp-submenu{display:none;position:absolute;width:145px;z-index:999;overflow:hidden}#adminmenu .wp-has-current-submenu .wp-submenu.sub-open{display:block}#adminmenu li .wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu{top:-5px;left:26px}#adminmenu li.focused.wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu.sub-open{padding:0 8px 8px 0}#adminmenu div.wp-submenu-head{display:block}#adminmenu a.menu-top,#adminmenu div.wp-menu-toggle{display:none}#adminmenu div.wp-menu-image{width:30px}#adminmenu .wp-not-current-submenu li a{padding-left:12px}#adminmenu li li{margin-left:0}#adminmenu li li a{padding-left:0}.wp-menu-arrow{-moz-transform:translate(33px);-webkit-transform:translate(33px);-o-transform:translate(33px);-ms-transform:translate(33px);transform:translate(33px)}#adminmenu li.menu-top:hover .wp-menu-arrow{display:none}#adminmenu li.current:hover .wp-menu-arrow,#adminmenu li.menu-top.wp-menu-open:hover .wp-menu-arrow{display:block;z-index:125}#adminmenu li.menu-top{border-width:1px 0;border-style:solid none}#adminmenu .wp-submenu .wp-submenu-wrap{margin-top:3px}#adminmenu .wp-has-current-submenu{margin-bottom:1px}#adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}#adminmenu .wp-has-current-submenu .wp-submenu-wrap{margin-top:4px}#adminmenu .wp-submenu ul{border-width:0 0 0 1px;border-style:solid}#adminmenu .wp-submenu a{padding-left:10px}#adminmenu a.wp-has-submenu{margin-left:40px}#collapse-menu{display:none}}.post-com-count-wrapper{min-width:22px;font-family:sans-serif}.post-com-count{height:1.3em;line-height:1.1em;display:block;text-decoration:none;padding:0 0 6px;cursor:pointer;background-position:center -80px;background-repeat:no-repeat}.post-com-count span{font-size:11px;font-weight:bold;height:1.4em;line-height:1.4em;min-width:.7em;padding:0 6px;display:inline-block;-webkit-border-radius:5px;border-radius:5px}strong .post-com-count{background-position:center -55px}.post-com-count:hover{background-position:center -3px}.column-response .post-com-count{float:left;margin-right:5px;text-align:center}.response-links{float:left}#the-comment-list .attachment-80x60{padding:4px 8px}html.wp-toolbar{padding-top:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.narrow{width:70%;margin-bottom:40px}.narrow p{line-height:150%}.widefat th,.widefat td{overflow:hidden}.widefat th{font-weight:normal}.widefat td p{margin:2px 0 .8em}.widefat .column-comment p{margin:.6em 0}.postbox-container{float:left}#dashboard-widgets.columns-1 .postbox-container{width:100%}#dashboard-widgets.columns-2 .postbox-container{width:49.5%}#dashboard-widgets.columns-2 #postbox-container-2,#dashboard-widgets.columns-2 #postbox-container-3,#dashboard-widgets.columns-2 #postbox-container-4{float:right;width:50.5%}#dashboard-widgets.columns-3 .postbox-container{width:33.5%}#dashboard-widgets.columns-3 #postbox-container-1{width:33%}#dashboard-widgets.columns-3 #postbox-container-3,#dashboard-widgets.columns-3 #postbox-container-4{float:right}#dashboard-widgets.columns-4 .postbox-container{width:25%}.postbox-container .meta-box-sortables{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.metabox-holder .postbox-container .empty-container{border:3px dashed #ccc;height:250px}.metabox-holder.columns-1 .postbox-container .empty-container,.columns-2 #postbox-container-3 .empty-container,.columns-2 #postbox-container-4 .empty-container,.columns-3 #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#poststuff{padding-top:10px}#poststuff #post-body{padding:0}#post-body-content{width:100%;float:left}#poststuff .postbox-container{width:100%}#poststuff #post-body.columns-2{margin-right:300px}#post-body.columns-2 #postbox-container-1{float:right;margin-right:-300px;width:280px}#post-body.columns-2 #side-sortables{min-height:250px}@media only screen and (max-width:799px){#wpbody-content #dashboard-widgets .postbox-container{width:100%}#wpbody-content .metabox-holder .postbox-container .empty-container{border:0 none;height:0;min-height:0}}@media only screen and (min-width:800px) and (max-width:1200px){#wpbody-content #dashboard-widgets .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets #postbox-container-2,#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:right;width:50.5%}#dashboard-widgets #postbox-container-3 .empty-container,#dashboard-widgets #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container{border:0 none;height:0;min-height:0}.index-php .screen-layout,.index-php .columns-prefs{display:block}.columns-prefs .columns-prefs-3,.columns-prefs .columns-prefs-4{display:none}}@media only screen and (max-width:850px){#wpbody-content #poststuff #post-body{margin:0}#wpbody-content #post-body.columns-2 #postbox-container-1{margin-right:0;width:100%}#poststuff #postbox-container-1 .empty-container,#poststuff #postbox-container-1 #side-sortables:empty{border:0 none;height:0;min-height:0}#poststuff #post-body.columns-2 #side-sortables{min-height:0}.screen-layout,.columns-prefs{display:none}}.postbox .hndle{cursor:move;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.postbox.closed .hndle{-webkit-border-radius:3px;border-radius:3px}.hndle a{font-size:11px;font-weight:normal}.postbox .handlediv{float:right;width:27px;height:30px;cursor:pointer}.sortable-placeholder{border-width:1px;border-style:dashed;margin-bottom:20px}.widget,.postbox,.stuffbox{margin-bottom:20px;padding:0;border-width:1px;border-style:solid;line-height:1}.widget .widget-top,.postbox h3,.stuffbox h3{margin-top:1px;border-bottom-width:1px;border-bottom-style:solid;cursor:move;-webkit-user-select:none;-moz-user-select:none;user-select:none}.stuffbox h3{cursor:auto}.postbox .inside,.stuffbox .inside{padding:0 10px;line-height:1.4em}.postbox .inside{margin:10px 0;position:relative}.postbox.closed h3{border:0;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.postbox table.form-table{margin-bottom:0}.temp-border{border:1px dotted #ccc}.columns-prefs label{padding:0 5px}#dashboard-widgets-wrap{margin:0 -8px}#wpbody-content .metabox-holder{padding-top:10px}#dashboard-widgets .meta-box-sortables{margin:0 8px}#dashboard_recent_comments div.undo{border-top-style:solid;border-top-width:1px;margin:0 -10px;padding:3px 8px;font-size:11px}#the-comment-list td.comment p.comment-author{margin-top:0;margin-left:0}#the-comment-list p.comment-author img{float:left;margin-right:8px}#the-comment-list p.comment-author strong a{border:0}#the-comment-list td{vertical-align:top}#the-comment-list td.comment{word-wrap:break-word}.welcome-panel{margin:20px 8px;padding:30px 10px 20px;border-width:1px 0;border-style:solid;position:relative;line-height:1.6em;overflow:auto}.welcome-panel h3{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:32px;font-weight:normal;line-height:1.2;margin:.1em 0 .8em}.welcome-panel h4{font-size:14px}.welcome-panel .welcome-panel-close{position:absolute;top:0;right:10px;padding:8px 3px;font-size:13px;text-decoration:none}.welcome-panel .welcome-panel-close:before{background:url('../images/xit.gif') 0 17% no-repeat;content:' ';height:100%;width:10px;left:-12px;position:absolute}.welcome-panel .welcome-panel-close:hover:before{background-position:100% 17%}.welcome-panel .wp-badge{float:left;margin-bottom:20px}.welcome-panel-content{max-width:1500px}.welcome-panel-content .about-description,.welcome-panel h3{margin-left:190px}.welcome-panel p.welcome-panel-dismiss{clear:both;padding:1em 0 0 0}.welcome-panel .welcome-panel-column-container{clear:both;overflow:hidden;position:relative;padding-left:26px}.welcome-panel .welcome-panel-column{margin:0 5% 0 -25px;padding-left:25px;width:30%;min-width:200px;float:left}.welcome-panel .welcome-panel-column.welcome-panel-last{margin-right:0}.welcome-panel h4 .icon16{margin-left:-32px}.welcome-panel .welcome-panel-column ul{margin:1.6em 1em 1em 1.3em}.welcome-panel .welcome-panel-column li{list-style-type:disc;padding-left:2px}table.fixed{table-layout:fixed}.fixed .column-rating,.fixed .column-visible{width:8%}.fixed .column-date,.fixed .column-parent,.fixed .column-links{width:10%}.fixed .column-response,.fixed .column-author,.fixed .column-categories,.fixed .column-tags,.fixed .column-rel,.fixed .column-role{width:15%}.fixed .column-comments{width:4em;padding:8px 0;text-align:left}.fixed .column-comments .vers{padding-left:3px}.fixed .column-comments a{float:left}.fixed .column-slug{width:25%}.fixed .column-posts{width:10%}.fixed .column-icon{width:80px}#comments-form .fixed .column-author{width:20%}#commentsdiv.postbox .inside{margin:0;padding:0}#commentsdiv .inside .row-actions{line-height:18px}#commentsdiv .inside .column-author{width:25%}#commentsdiv .column-comment p{margin:.6em 0;padding:0}#commentsdiv #replyrow td{padding:0}#commentsdiv p{padding:8px 10px;margin:0}#commentsdiv #add-new-comment{border-width:0 0 1px;border-style:none none solid}#commentsdiv .comments-box{border:0 none}#commentsdiv .comments-box thead th{background:transparent;padding:0 7px 4px;font-style:italic}#commentsdiv .comments-box tr:last-child td{border-bottom:0 none}#commentsdiv img.waiting{padding-left:5px}.sorting-indicator{display:none;width:7px;height:4px;margin-top:8px;margin-left:7px;background-image:url(../images/sort.gif);background-repeat:no-repeat}.fixed .column-comments .sorting-indicator{margin-top:3px}.widefat th.sortable,.widefat th.sorted{padding:0}th.sortable a,th.sorted a{display:block;overflow:hidden;padding:7px 7px 8px}.fixed .column-comments.sortable a,.fixed .column-comments.sorted a{padding:8px 0}th.sortable a span,th.sorted a span{float:left;cursor:pointer}th.sorted.asc .sorting-indicator,th.desc:hover span.sorting-indicator{display:block;background-position:0 0}th.sorted.desc .sorting-indicator,th.asc:hover span.sorting-indicator{display:block;background-position:-7px 0}.tablenav-pages a{border-bottom-style:solid;border-bottom-width:2px;font-weight:bold;margin-right:1px;padding:0 2px}.tablenav-pages .current-page{text-align:center}.tablenav-pages .next-page{margin-left:2px}.tablenav a.button-secondary{display:block;margin:3px 8px 0 0}.tablenav{clear:both;height:30px;margin:6px 0 4px;vertical-align:middle}.tablenav.themes{max-width:98%}.tablenav .tablenav-pages{float:right;display:block;cursor:default;height:30px;line-height:30px;font-size:12px}.tablenav .no-pages,.tablenav .one-page .pagination-links{display:none}.tablenav .tablenav-pages a,.tablenav-pages span.current{text-decoration:none;padding:3px 6px}.tablenav .tablenav-pages a.disabled:hover,.tablenav .tablenav-pages a.disabled:active{cursor:default}.tablenav .displaying-num{margin-right:10px;font-size:12px;font-style:italic}.tablenav .actions{padding:2px 8px 0 0}.tablenav .delete{margin-right:20px}.view-switch{float:right;margin:6px 8px 0}.view-switch a{text-decoration:none}.filter{float:left;margin:-5px 0 0 10px}.filter .subsubsub{margin-left:-10px;margin-top:13px}.screen-per-page{width:4em}#posts-filter fieldset{float:left;margin:0 1.5ex 1em 0;padding:0}#posts-filter fieldset legend{padding:0 0 .2em 1px}span.post-state-format{font-weight:normal}#wpbody-content .inline-edit-row fieldset{font-size:12px;float:left;margin:0;padding:0;width:100%}tr.inline-edit-row td,#wpbody-content .inline-edit-row fieldset .inline-edit-col{padding:0 .5em}#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col{border-width:0 0 0 1px;border-style:none none none solid}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:40%}#wpbody-content .quick-edit-row-post .inline-edit-col-right{width:39%}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:20%}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:50%}#wpbody-content .quick-edit-row-page .inline-edit-col-right,#wpbody-content .bulk-edit-row-post .inline-edit-col-right{width:49%}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:30%}#wpbody-content .bulk-edit-row-page .inline-edit-col-right{width:69%}#wpbody-content .bulk-edit-row .inline-edit-col-bottom{float:right;width:69%}#wpbody-content .inline-edit-row-page .inline-edit-col-right{margin-top:27px}.inline-edit-row fieldset .inline-edit-group{clear:both}.inline-edit-row fieldset .inline-edit-group:after{content:".";display:block;height:0;clear:both;visibility:hidden}.inline-edit-row p.submit{clear:both;padding:.5em;margin:.5em 0 0}.inline-edit-row span.error{line-height:22px;margin:0 15px;padding:3px 5px}.inline-edit-row h4{margin:.2em 0;padding:0;line-height:23px}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{margin:0;padding:0;line-height:27px}.inline-edit-row fieldset label,.inline-edit-row fieldset span.inline-edit-categories-label{display:block;margin:.2em 0}.inline-edit-row fieldset label.inline-edit-tags{margin-top:0}.inline-edit-row fieldset label.inline-edit-tags span.title{margin:.2em 0}.inline-edit-row fieldset label span.title{display:block;float:left;width:5em}.inline-edit-row fieldset label span.input-text-wrap{display:block;margin-left:5em}.quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto;padding-right:.5em}.inline-edit-row .input-text-wrap input[type=text]{width:100%}.inline-edit-row fieldset label input[type=checkbox]{vertical-align:text-bottom}.inline-edit-row fieldset label textarea{width:100%;height:4em}#wpbody-content .bulk-edit-row fieldset .inline-edit-group label{max-width:50%}#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child{margin-right:.5em}.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input{width:6em}.inline-edit-row h4{text-transform:uppercase}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{font-style:italic;line-height:1.8em}.inline-edit-row fieldset input[type="text"],.inline-edit-row fieldset textarea{border-style:solid;border-width:1px}.inline-edit-row fieldset .inline-edit-date{float:left}.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=mn]{font-size:12px;width:2.1em}.inline-edit-row fieldset input[name=aa]{font-size:12px;width:3.5em}.inline-edit-row fieldset label input.inline-edit-password-input{width:8em}.inline-edit-row .catshow,.inline-edit-row .cathide{cursor:pointer}ul.cat-checklist{height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0}#bulk-titles{display:block;height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0 0 5px}.inline-edit-row fieldset ul.cat-checklist li,.inline-edit-row fieldset ul.cat-checklist input{margin:0}.inline-edit-row fieldset ul.cat-checklist label,.inline-edit-row .catshow,.inline-edit-row .cathide,.inline-edit-row #bulk-titles div{font-family:sans-serif;font-style:normal;font-size:11px}table .inline-edit-row fieldset ul.cat-hover{height:auto;max-height:30em;overflow-y:auto;position:absolute}.inline-edit-row fieldset label input.inline-edit-menu-order-input{width:3em}.inline-edit-row fieldset label input.inline-edit-slug-input{width:75%}.quick-edit-row-post fieldset label.inline-edit-status{float:left}#bulk-titles{line-height:140%}#bulk-titles div{margin:.2em .3em}#bulk-titles div a{cursor:pointer;display:block;float:left;height:10px;margin:3px 3px 0 -2px;overflow:hidden;position:relative;text-indent:-9999px;width:10px}#titlediv{position:relative;margin-bottom:20px}#titlediv label{cursor:text}#titlediv div.inside{margin:0}#poststuff #titlewrap{border:0;padding:0}#titlediv #title{padding:3px 8px;font-size:1.7em;line-height:100%;width:100%;outline:0}#titlediv #title-prompt-text,#wp-fullscreen-title-prompt-text{color:#bbb;position:absolute;font-size:1.7em;padding:8px 10px}#wp-fullscreen-title-prompt-text{left:0;padding:11px}#poststuff .inside-submitbox,#side-sortables .inside-submitbox{margin:0 3px;font-size:11px}input#link_description,input#link_url{width:98%}#pending{background:0 none;border:0 none;padding:0;font-size:11px;margin-top:-1px}#edit-slug-box{height:1em;margin-top:8px;padding:0 10px}#editable-post-name-full{display:none}#editable-post-name input{width:16em}.postarea h3 label{float:left}#submitpost #ajax-loading,#submitpost .ajax-loading{vertical-align:middle}#wpcontent .ajax-loading{visibility:hidden}.submitbox .submit{text-align:left;padding:12px 10px 10px;font-size:11px}.submitbox .submitdelete{text-decoration:none;padding:1px 2px}.submitbox .submitdelete,.submitbox .submit a:hover{border-bottom-width:1px;border-bottom-style:solid}.submitbox .submit input{margin-bottom:8px;margin-right:4px;padding:6px}.inside-submitbox #post_status{margin:2px 0 2px -2px}#post-status-select,#post-format{line-height:2.5em;margin-top:3px}#post-body #normal-sortables{min-height:50px}.postbox{position:relative;min-width:255px}#trackback_url{width:99%}#normal-sortables .postbox .submit{background:transparent none;border:0 none;float:right;padding:0 12px;margin:0}.category-add input[type="text"],.category-add select{width:100%;max-width:260px}.press-this #side-sortables .category-tabs li,ul.category-tabs li,#side-sortables .add-menu-item-tabs li,.wp-tab-bar li{display:inline;line-height:1.35em}.no-js .category-tabs li.hide-if-no-js{display:none}.category-tabs a,#side-sortables .add-menu-item-tabs a,.wp-tab-bar a{text-decoration:none}.category-tabs{margin:8px 0 3px}#category-adder h4{margin:10px 0}#side-sortables .add-menu-item-tabs,.wp-tab-bar{margin-bottom:3px}#normal-sortables .postbox #replyrow .submit{float:none;margin:0;padding:0 7px 5px}#side-sortables .submitbox .submit input,#side-sortables .submitbox .submit .preview,#side-sortables .submitbox .submit a.preview:hover{border:0 none}#side-sortables .inside-submitbox .insidebox,.stuffbox .insidebox{margin:11px 0}ul.category-tabs,ul.add-menu-item-tabs,ul.wp-tab-bar{margin-top:12px}ul.category-tabs li,ul.add-menu-item-tabs li.tabs,.wp-tab-active{border-style:solid solid none;border-width:1px 1px 0}#post-body .add-menu-item-tabs li.tabs{border-style:solid none solid solid;border-width:1px 0 1px 1px;margin-right:-1px}ul.category-tabs li,ul.add-menu-item-tabs li,ul.wp-tab-bar li{padding:3px 5px 5px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}form#tags-filter{position:relative}td.post-title strong,td.plugin-title strong{display:block;margin-bottom:.2em}td.post-title p,td.plugin-title p{margin:6px 0}.wp-hidden-children .wp-hidden-child,.ui-tabs-hide{display:none}.commentlist .avatar{vertical-align:text-top}#post-body .tagsdiv #newtag{margin-right:5px;width:16em}#side-sortables input#post_password{width:94%}#side-sortables .tagsdiv #newtag{width:68%}#post-status-info{border-width:0 1px 1px;border-style:none solid solid;width:100%;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}#post-status-info td{font-size:12px}.autosave-info{padding:2px 15px;text-align:right}#editorcontent #post-status-info{border:0}#post-body .wp_themeSkin .mceStatusbar a.mceResize{display:block;background:transparent url(../images/resize.gif) no-repeat scroll right bottom;width:12px;cursor:se-resize;margin:0 2px;position:relative;top:-2px}#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize{top:20px}#wp-word-count{display:block;padding:2px 10px}#timestampdiv select{height:20px;line-height:14px;padding:0;vertical-align:top}#aa,#jj,#hh,#mn{padding:1px;font-size:12px}#jj,#hh,#mn{width:2em}#aa{width:3.4em}.curtime #timestamp{background-repeat:no-repeat;background-position:left top;padding-left:18px}#timestampdiv{padding-top:5px;line-height:23px}#timestampdiv p{margin:8px 0 6px}#timestampdiv input{border-width:1px;border-style:solid}#postcustomstuff .updatemeta,#postcustomstuff .deletemeta{margin:auto}#postcustomstuff thead th{padding:5px 8px 8px}#postcustom #postcustomstuff .submit{border:0 none;float:none;padding:5px 8px}#side-sortables #postcustom #postcustomstuff .submit{padding:0 5px}#side-sortables #postcustom #postcustomstuff td.left input{margin:3px 3px 0}#side-sortables #postcustom #postcustomstuff #the-list textarea{height:85px;margin:3px}#postcustomstuff table{margin:0;width:100%;border-width:1px;border-style:solid;border-spacing:0}#postcustomstuff table input,#postcustomstuff table select,#postcustomstuff table textarea{width:95%;margin:8px 0 8px 8px}#postcustomstuff th.left,#postcustomstuff td.left{width:38%}#postcustomstuff #newmeta .submit{padding:0 8px}#postcustomstuff .submit input,#postcustomstuff table #addmetasub{width:auto}#postcustomstuff #newmetaleft{vertical-align:top}#postcustomstuff #newmetaleft a{padding:0 10px;text-decoration:none}table.diff{width:100%}table.diff col.content{width:50%}table.diff tr{background-color:transparent}table.diff td,table.diff th{padding:.5em;font-family:Consolas,Monaco,monospace;border:0}table.diff .diff-deletedline del,table.diff .diff-addedline ins{text-decoration:none}.category-adder{margin-left:120px;padding:4px 0}.category-adder h4{margin:0 0 8px}#side-sortables .category-adder{margin:0}#post-body ul.add-menu-item-tabs{float:left;width:120px;text-align:right;margin:0 -120px 0 5px;padding:0}#post-body ul.add-menu-item-tabs li{padding:8px}#post-body ul.add-menu-item-tabs li.tabs{-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:3px}.wp-tab-panel,.categorydiv div.tabs-panel,.customlinkdiv div.tabs-panel,.posttypediv div.tabs-panel,.taxonomydiv div.tabs-panel{height:200px;overflow:auto;padding:.5em .9em;border-style:solid;border-width:1px}.nav-menus-php .customlinkdiv div.tabs-panel,.nav-menus-php .posttypediv div.tabs-panel,.nav-menus-php .taxonomydiv div.tabs-panel{height:auto;max-height:205px}div.tabs-panel-active{display:block}div.tabs-panel-inactive{display:none}.colunms-1 .categorydiv div.tabs-panel,.taxonomy div.tabs-panel{margin:0 5px 0 125px}.customlinkdiv ul,.posttypediv ul,.taxonomydiv ul{list-style:none;padding:0;margin:0}#front-page-warning,#front-static-pages ul,ul.export-filters,.inline-editor ul.cat-checklist ul,.categorydiv ul.categorychecklist ul,.customlinkdiv ul.categorychecklist ul,.posttypediv ul.categorychecklist ul,.taxonomydiv ul.categorychecklist ul{margin-left:18px}ul.categorychecklist li{margin:0;padding:0;line-height:19px;word-wrap:break-word}.categorydiv .tabs-panel,.customlinkdiv .tabs-panel,.posttypediv .tabs-panel,.taxonomydiv .tabs-panel{border-width:3px;border-style:solid}.form-wrap p,.form-wrap label{font-size:11px}.form-wrap label{display:block;padding:2px;font-size:12px}.form-field input,.form-field textarea{border-style:solid;border-width:1px;width:95%}p.description,.form-wrap p{margin:2px 0 5px}p.help,p.description,span.description,.form-wrap p{font-size:12px;font-style:italic;font-family:sans-serif}.form-wrap .form-field{margin:0 0 10px;padding:8px}.col-wrap h3{margin:12px 0;font-size:1.1em}.col-wrap p.submit{margin-top:-10px}#poststuff .taghint{color:#aaa;margin:15px 0 -24px 12px}#poststuff .tagsdiv .howto{margin:0 0 6px 8px}.ajaxtag .newtag{position:relative}.tagsdiv .newtag{width:180px}.tagsdiv .the-tags{display:block;height:60px;margin:0 auto;overflow:auto;width:260px}#post-body-content .tagsdiv .the-tags{margin:0 5px}p.popular-tags{-webkit-border-radius:8px;border-radius:8px;border-width:1px;border-style:solid;line-height:2em;max-width:1000px;padding:8px 12px 12px;text-align:justify}p.popular-tags a{padding:0 3px}.tagcloud{width:97%;margin:0 0 40px;text-align:justify}.tagcloud h3{margin:2px 0 12px}.ac_results{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;display:none;border-width:1px;border-style:solid}.ac_results li{padding:2px 5px;white-space:nowrap;text-align:left}.ac_over{cursor:pointer}.ac_match{text-decoration:underline}table.links-table{width:100%}.links-table th{font-weight:normal;text-align:left;vertical-align:top;min-width:80px;width:20%;word-wrap:break-word}.links-table th,.links-table td{padding:5px 0}.links-table td label{margin-right:8px}.links-table td input[type="text"],.links-table td textarea{width:100%}.links-table #link_rel{max-width:280px}.media-item .describe{border-collapse:collapse;width:100%;border-top-style:solid;border-top-width:1px;clear:both;cursor:default}.media-item.media-blank .describe{border:0}.media-item .describe th{vertical-align:top;text-align:left;padding:5px 10px 10px;width:140px}.media-item .describe .align th{padding-top:0}.media-item .media-item-info tr{background-color:transparent}.media-item .describe td{padding:0 8px 8px 0;vertical-align:top}.media-item thead.media-item-info td{padding:4px 10px 0}.media-item .media-item-info .A1B1{padding:0 0 0 10px}.media-item td.savesend{padding-bottom:15px}.media-item .thumbnail{max-height:128px;max-width:128px}#wpbody-content #async-upload-wrap a{display:none}.media-upload-form{margin-top:20px}.media-upload-form td label{margin-right:6px;margin-left:2px}.media-upload-form .align .field label{display:inline;padding:0 0 0 23px;margin:0 1em 0 3px;font-weight:bold}.media-upload-form tr.image-size label{margin:0 0 0 5px;font-weight:bold}.media-upload-form th.label label{font-weight:bold;margin:.5em;font-size:13px}.media-upload-form th.label label span{padding:0 5px}abbr.required{border:medium none;text-decoration:none}.media-item .describe input[type="text"],.media-item .describe textarea{width:460px}.media-item .describe p.help{margin:0;padding:0 0 0 5px}.describe-toggle-on,.describe-toggle-off{display:block;line-height:36px;float:right;margin-right:15px}.media-item .describe-toggle-off,.media-item.open .describe-toggle-on,.media-item.open img.pinkynail{display:none}.media-item.open .describe-toggle-off{display:block}#media-items .media-item{border-style:solid;border-width:1px;min-height:36px;position:relative;margin-top:-1px;width:100%}#media-items{width:623px}#media-items:empty{border:0 none}.media-item .filename{line-height:36px;overflow:hidden;padding:0 10px}.media-item .error-div{padding-left:10px}.media-item .pinkynail{float:left;margin:2px 2px 0;max-width:40px;max-height:32px}.media-item .startopen,.media-item .startclosed{display:none}.media-item .original{position:relative;height:34px}.media-item .progress{float:right;height:22px;margin:6px 10px 0 0;width:200px;line-height:2em;padding:0;overflow:hidden;margin-bottom:2px;border:1px solid #d1d1d1;background:#fff;background-image:linear-gradient(bottom,#fff 0,#f7f7f7 100%);background-image:-o-linear-gradient(bottom,#fff 0,#f7f7f7 100%);background-image:-moz-linear-gradient(bottom,#fff 0,#f7f7f7 100%);background-image:-webkit-linear-gradient(bottom,#fff 0,#f7f7f7 100%);background-image:-ms-linear-gradient(bottom,#fff 0,#f7f7f7 100%);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 0 3px rgba(0,0,0,0.1);box-shadow:inset 0 0 3px rgba(0,0,0,0.1)}.media-item .bar{z-index:9;width:0;height:100%;margin-top:-24px;background-color:#83b4d8;background-image:linear-gradient(bottom,#72a7cf 0,#90c5ee 100%);background-image:-o-linear-gradient(bottom,#72a7cf 0,#90c5ee 100%);background-image:-moz-linear-gradient(bottom,#72a7cf 0,#90c5ee 100%);background-image:-webkit-linear-gradient(bottom,#72a7cf 0,#90c5ee 100%);background-image:-ms-linear-gradient(bottom,#72a7cf 0,#90c5ee 100%);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.3);box-shadow:0 0 3px rgba(0,0,0,0.3)}.media-item .progress .percent{z-index:10;position:relative;width:200px;padding:0 8px;text-shadow:0 1px 0 rgba(255,255,255,0.4);color:rgba(0,0,0,0.6)}.upload-php .fixed .column-parent{width:25%}.js .html-uploader #plupload-upload-ui{display:none}.js .html-uploader #html-upload-ui{display:block}.media-upload-form .media-item.error{margin:0;padding:0}.media-upload-form .media-item.error p,.media-item .error-div{line-height:16px;margin:5px 10px;padding:0}.media-item .error-div a.dismiss{display:block;float:right;margin:5px 4px 0 15px}.find-box{width:500px;height:300px;overflow:hidden;padding:33px 5px 40px;position:absolute;z-index:1000}.find-box-head{cursor:move;font-weight:bold;height:2em;line-height:2em;padding:1px 12px;position:absolute;top:5px;width:100%}.find-box-inside{overflow:auto;width:100%;height:100%}.find-box-search{padding:12px;border-width:1px;border-style:none none solid}#find-posts-response{margin:8px 0;padding:0 1px}#find-posts-response table{width:100%}#find-posts-response .found-radio{padding:5px 0 0 8px;width:15px}.find-box-buttons{width:480px;margin:8px}.find-box-search label{padding-right:6px}.find-box #resize-se{position:absolute;right:1px;bottom:1px}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border-width:1px;border-style:solid;line-height:1.8em;word-spacing:3px;-webkit-border-radius:6px;border-radius:6px}.drag-drop #drag-drop-area{border:4px dashed #ddd;height:200px}.drag-drop .drag-drop-inside{margin:70px auto 0;width:250px}.drag-drop-inside p{color:#aaa;font-size:14px;margin:5px 0;display:none}.drag-drop .drag-drop-inside p{text-align:center}.drag-drop-inside p.drag-drop-info{font-size:20px}.drag-drop .drag-drop-inside p,.drag-drop-inside p.drag-drop-buttons{display:block}.drag-drop.drag-over #drag-drop-area{border-color:#83b4d8}#plupload-upload-ui{position:relative}.describe .image-editor{vertical-align:top}.imgedit-wrap{position:relative}.imgedit-settings p{margin:8px 0}.describe .imgedit-wrap table td{vertical-align:top;padding-top:0}.imgedit-wrap p,.describe .imgedit-wrap table td{font-size:11px;line-height:18px}.describe .imgedit-wrap table td.imgedit-settings{padding:0 5px}td.imgedit-settings input{vertical-align:middle}.imgedit-wait{position:absolute;top:0;background:#fff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px;opacity:.7;filter:alpha(opacity=70);width:100%;height:500px;display:none}.media-disabled,.imgedit-settings .disabled{color:grey}.imgedit-wait-spin{padding:0 4px 4px;vertical-align:bottom;visibility:hidden}.imgedit-menu{margin:0 0 12px;min-width:300px}.imgedit-menu div{float:left;width:32px;height:32px}.imgedit-crop-wrap{position:relative}.imgedit-crop{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -9px -31px;margin:0 8px 0 0}.imgedit-crop.disabled:hover{background-position:-9px -31px}.imgedit-crop:hover{background-position:-9px -1px}.imgedit-rleft{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -46px -31px;margin:0 3px}.imgedit-rleft.disabled:hover{background-position:-46px -31px}.imgedit-rleft:hover{background-position:-46px -1px}.imgedit-rright{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -77px -31px;margin:0 8px 0 3px}.imgedit-rright.disabled:hover{background-position:-77px -31px}.imgedit-rright:hover{background-position:-77px -1px}.imgedit-flipv{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -115px -31px;margin:0 3px}.imgedit-flipv.disabled:hover{background-position:-115px -31px}.imgedit-flipv:hover{background-position:-115px -1px}.imgedit-fliph{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -147px -31px;margin:0 8px 0 3px}.imgedit-fliph.disabled:hover{background-position:-147px -31px}.imgedit-fliph:hover{background-position:-147px -1px}.imgedit-undo{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -184px -31px;margin:0 3px}.imgedit-undo.disabled:hover{background-position:-184px -31px}.imgedit-undo:hover{background-position:-184px -1px}.imgedit-redo{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -215px -31px;margin:0 8px 0 3px}.imgedit-redo.disabled:hover{background-position:-215px -31px}.imgedit-redo:hover{background-position:-215px -1px}.imgedit-applyto img{margin:0 8px 0 0}.imgedit-group-top{margin:5px 0}.imgedit-applyto .imgedit-label{padding:2px 0 0;display:block}.imgedit-help{display:none;font-style:italic;margin-bottom:8px}.imgedit-help ul li{font-size:11px}a.imgedit-help-toggle{text-decoration:none}#wpbody-content .imgedit-response div{width:600px;margin:8px}.form-table td.imgedit-response{padding:0}.imgedit-submit{margin:8px 0}.imgedit-submit-btn{margin-left:20px}.imgedit-wrap .nowrap{white-space:nowrap}span.imgedit-scale-warn{color:red;font-size:20px;font-style:normal;visibility:hidden;vertical-align:middle}.imgedit-group{border-width:1px;border-style:solid;-webkit-border-radius:8px;border-radius:8px;margin-bottom:8px;padding:2px 10px}.form-table{border-collapse:collapse;margin-top:.5em;width:100%;margin-bottom:-8px;clear:both}.form-table td{margin-bottom:9px;padding:8px 10px;line-height:20px;font-size:12px}.form-table th,.form-wrap label{font-weight:normal;text-shadow:#fff 0 1px 0}.form-table th{vertical-align:top;text-align:left;padding:10px;width:200px}.form-table th.th-full{width:auto}.form-table div.color-option{display:block;clear:both;margin-top:12px}.form-table input.tog{margin-top:2px;margin-right:2px;float:left}.form-table td p{margin-top:4px}.form-table table.color-palette{vertical-align:bottom;float:left;margin:-12px 3px 11px}.form-table .color-palette td{border-width:1px 1px 0;border-style:solid solid none;height:10px;line-height:20px;width:10px}.commentlist li{padding:1em 1em .2em;margin:0;border-bottom-width:1px;border-bottom-style:solid}.commentlist li li{border-bottom:0;padding:0}.commentlist p{padding:0;margin:0 0 .8em}#replyrow input{border-width:1px;border-style:solid}#replyrow td{padding:2px}#replysubmit{margin:0;padding:0 7px 3px;text-align:center}#replysubmit img.waiting,.inline-edit-save img.waiting{padding:4px 10px 0;vertical-align:top;float:right}#replysubmit .button{margin-right:5px}#replysubmit .error{color:red;line-height:21px;text-align:center;vertical-align:center}#replyrow h5{margin:.2em 0 0;padding:0 5px;line-height:1.4em;font-size:1em}#edithead .inside{float:left;padding:3px 0 2px 5px;margin:0;text-align:center}#edithead .inside input{width:180px}#edithead label{padding:2px 0}#replycontainer{padding:5px}#replycontent{height:120px}.comment-ays{margin-bottom:0;border-style:solid;border-width:1px}.comment-ays th{border-right-style:solid;border-right-width:1px}.trash-undo-inside,.spam-undo-inside{margin:1px 8px 1px 0;line-height:16px}.spam-undo-inside .avatar,.trash-undo-inside .avatar{height:20px;width:20px;margin-right:8px;vertical-align:middle}.stuffbox .editcomment{clear:none}#comment-status-radio p{margin:3px 0 5px}#comment-status-radio input{margin:2px 3px 5px 0;vertical-align:middle}#comment-status-radio label{padding:5px 0}.commentlist .avatar{vertical-align:text-top}.theme-install-php .tablenav{height:auto}h3.available-themes{margin:0 0 1em;float:left}.available-theme{display:inline-block;margin-right:10px;overflow:hidden;padding:20px 20px 20px 0;vertical-align:top;width:300px}.available-theme .screenshot{width:300px;height:225px;display:block;border-width:1px;border-style:solid;margin-bottom:10px;overflow:hidden}.available-theme img{width:300px}.available-theme h3{margin:15px 0 0}.available-theme .theme-author{line-height:18px}.available-theme .action-links{margin-top:10px;overflow:hidden}#current-theme .theme-info li,.theme-options li,.available-theme .action-links li{float:left;padding-right:10px;margin-right:10px;border-right:1px solid #dfdfdf}.available-theme .action-links li{padding-right:8px;margin-right:8px}#current-theme .theme-info li:last-child,.theme-options li:last-child,.available-theme .action-links li:last-child{padding-right:0;margin-right:0;border-right:0}.available-theme .action-links .delete-theme{float:right;margin-left:8px;margin-right:0}.available-theme .action-links .delete-theme a{color:red;padding:2px}.available-theme .action-links .delete-theme a:hover{background:red;color:#fff;text-decoration:none}.available-theme .action-links p{float:left}#current-theme{margin:20px 0 10px;padding:0 0 20px;border-bottom:1px solid #dfdfdf;overflow:hidden}#current-theme.has-screenshot{padding-left:330px}#current-theme h3{margin:0;font-size:12px;font-weight:normal;color:#999}#current-theme h4{margin:3px 0 16px;font-size:20px}#current-theme h4 span{margin-left:20px;font-size:12px;font-weight:normal}#current-theme a{border-bottom:0}#current-theme .theme-info{margin:1em 0;overflow:hidden}#current-theme .theme-description{margin-top:5px;max-width:600px;line-height:1.6em}#current-theme img{float:left;width:300px;margin-left:-330px;border-width:1px;border-style:solid}.theme-options{overflow:hidden;font-size:14px;padding-bottom:10px}.theme-options .load-customize{margin-right:30px;float:left}.theme-options span{float:left;margin-right:10px;text-transform:uppercase;font-size:11px;line-height:18px;color:#999}.theme-options ul{float:left;margin:0}@media only screen and (max-width:1200px){.available-theme,.available-theme .screenshot,#current-theme img{width:240px}.available-theme .screenshot{height:180px}.available-theme img{width:100%}#current-theme.has-screenshot{padding-left:270px}#current-theme img{margin-left:-270px}}#post-body ul.add-menu-item-tabs li.tabs a,#TB_window #TB_title a.tb-theme-preview-link,#TB_window #TB_title a.tb-theme-preview-link:visited{font-weight:bold;text-decoration:none}#TB_window #TB_title{background-color:#222;color:#cfcfcf}#broken-themes{text-align:left;width:50%;border-spacing:3px;padding:3px}.theme-install-php h4{margin:2.5em 0 8px}.appearance_page_custom-header #headimg{border:1px solid #dfdfdf;width:100%}.appearance_page_custom-header #upload-form p label{font-size:12px}.appearance_page_custom-header .available-headers .default-header{float:left;margin:0 20px 20px 0}.appearance_page_custom-header .random-header{clear:both;margin:0 20px 20px 0;vertical-align:middle}.appearance_page_custom-header .available-headers label input,.appearance_page_custom-header .random-header label input{margin-right:10px}.appearance_page_custom-header .available-headers label img{vertical-align:middle}div#custom-background-image{min-height:100px;border:1px solid #dfdfdf}div#custom-background-image img{max-width:400px;max-height:300px}.nav-tab{border-style:solid;border-color:#dfdfdf #dfdfdf #fff;border-width:1px 1px 0;color:#aaa;text-shadow:#fff 0 1px 0;font-size:12px;line-height:16px;display:inline-block;padding:4px 14px 6px;text-decoration:none;margin:0 6px -1px 0;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.nav-tab-active{border-width:1px;color:#464646}.nav-tab:hover,.nav-tab-active{border-color:#ccc #ccc #fff}h2.nav-tab-wrapper,h3.nav-tab-wrapper{border-bottom:1px solid #ccc;padding-bottom:0}h2 .nav-tab{padding:4px 10px 6px;font-weight:200;font-size:20px;line-height:24px}#dashboard_right_now .versions .b,#post-status-display,#post-visibility-display,#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover,.media-item .percent,.plugins .name,#pass-strength-result.strong,#pass-strength-result.short,.button-highlighted,input.button-highlighted,#quicktags #ed_strong,#ed_reply_toolbar #ed_reply_strong,.item-controls .item-order a,.feature-filter .feature-name{font-weight:bold}.plugins p{margin:0 4px;padding:0}.plugins .desc p{margin:0 0 8px}.plugins td.desc{line-height:1.5em}.plugins .desc ul,.plugins .desc ol{margin:0 0 0 2em}.plugins .desc ul{list-style-type:disc}.plugins .row-actions-visible{padding:0}.plugins tbody th.check-column{padding:7px 0}.plugins .inactive td,.plugins .inactive th,.plugins .active td,.plugins .active th{border-top-style:solid;border-top-width:1px;padding:5px 7px 0}.plugins .update th,.plugins .update td{border-bottom:0}.plugin-update-tr td{border-top:0}#wpbody-content .plugins .plugin-title,#wpbody-content .plugins .theme-title{padding-right:12px;white-space:nowrap}.plugins .second,.plugins .row-actions-visible{padding:0 0 5px}.plugins .update .second,.plugins .update .row-actions-visible{padding-bottom:0}.plugins-php .widefat tfoot th,.plugins-php .widefat tfoot td{border-top-style:solid;border-top-width:1px}.plugin-update-tr .update-message{margin:5px;padding:3px 5px}.plugin-install-php h4{margin:2.5em 0 8px}#profile-page .form-table textarea{width:500px;margin-bottom:6px}#profile-page .form-table #rich_editing{margin-right:5px}#your-profile legend{font-size:22px}#your-profile #rich_editing{border:0}#display_name{width:15em}#createuser .form-field input{width:25em}.pressthis{margin:20px 0}.pressthis a{display:inline-block;position:relative;cursor:move;color:#333;background:#dfdfdf;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0.07,#e6e6e6),color-stop(0.77,#d8d8d8));background-image:-webkit-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-moz-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-ms-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-o-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);-webkit-border-radius:5px;border-radius:5px;border:1px solid #b4b4b4;font-style:normal;line-height:16px;font-size:14px;text-decoration:none;text-shadow:0 1px 0 #fff}.pressthis a:hover,.pressthis a:active{color:#333}.pressthis a:hover:after{transform:skew(20deg) rotate(9deg);-webkit-transform:skew(20deg) rotate(9deg);-moz-transform:skew(20deg) rotate(9deg);box-shadow:0 10px 8px rgba(0,0,0,0.7);-webkit-box-shadow:0 10px 8px rgba(0,0,0,0.7);-moz-box-shadow:0 10px 8px rgba(0,0,0,0.7)}.pressthis a span{background:url(../images/press-this.png?v=20120502) no-repeat 0 5px;padding:8px 11px 8px 27px;margin:0 5px;display:inline-block}.pressthis a:after{content:'';width:70%;height:55%;z-index:-1;position:absolute;right:10px;bottom:9px;background:transparent;transform:skew(20deg) rotate(6deg);-webkit-transform:skew(20deg) rotate(6deg);-moz-transform:skew(20deg) rotate(6deg);box-shadow:0 10px 8px rgba(0,0,0,0.6);-webkit-box-shadow:0 10px 8px rgba(0,0,0,0.6);-moz-box-shadow:0 10px 8px rgba(0,0,0,0.6)}#utc-time,#local-time{padding-left:25px;font-style:italic;font-family:sans-serif}.defaultavatarpicker .avatar{margin:2px 0;vertical-align:middle}#footer{position:absolute;bottom:0;left:0;right:0;padding:10px 0;margin-right:20px;border-top-width:1px;border-top-style:solid}#footer p{margin:0;line-height:20px}#footer a{text-decoration:none}#footer a:hover{text-decoration:underline}.about-wrap{position:relative;margin:25px 40px 0 20px;max-width:1050px;font-size:15px}.about-wrap div.updated,.about-wrap div.error{display:none!important}.about-wrap p{line-height:1.6em}.about-wrap h1{margin:.2em 200px 0 0;line-height:1.2em;font-size:2.8em;font-weight:200}.about-text,.about-description,.about-wrap li.wp-person a.web{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-weight:normal;line-height:1.6em;font-size:20px}.about-description{margin-top:1.4em}.about-text{margin:1em 200px 1.4em 0;min-height:60px;font-size:24px}.about-wrap h3{font-size:24px;margin-bottom:1em;padding-top:20px}.about-wrap .changelog{overflow:hidden}.about-wrap .changelog li{list-style-type:disc;margin-left:3em}.about-wrap .feature-section{padding-bottom:20px}.about-wrap .feature-section h4{margin-bottom:.6em}.about-wrap .feature-section p{margin-top:.6em}.about-wrap code{font-size:14px}.about-wrap .point-releases{margin-top:5px}.about-wrap .changelog.point-releases h3{padding-top:35px}.about-wrap .changelog.point-releases h3:first-child{padding-top:7px}.wp-badge{padding-top:142px;height:50px;width:173px;font-weight:bold;font-size:14px;text-align:center;margin:0 -5px;background:url('../images/wp-badge.png?ver=20111120') no-repeat}.about-wrap .wp-badge{position:absolute;top:0;right:0}.about-wrap h2.nav-tab-wrapper{padding-left:6px}.about-wrap h2 .nav-tab{padding:4px 10px 6px;margin:0 3px -1px 0;font-size:18px;vertical-align:top}.about-wrap h2 .nav-tab-active{font-weight:bold;padding-top:3px}.about-wrap .feature-section img{border:0;margin:0 1.94% 10px 0;-webkit-border-radius:3px;border-radius:3px}.about-wrap .feature-section img.image-50{max-width:50%}.about-wrap .feature-section img.image-30{max-width:31.2381%}.ie8 .about-wrap .feature-section img{border-width:1px;border-style:solid}.about-wrap .feature-section.three-col{padding-top:15px;margin-bottom:0}.about-wrap .feature-section.three-col div{width:30%;margin-right:4.999999999%;float:left}.about-wrap .feature-section.three-col h4{margin:0 0 .6em 0}.about-wrap .feature-section.three-col img{margin:.5em 0 .5em 5px;max-width:100%;float:none}.ie8 .about-wrap .feature-section.three-col img{margin-left:0}.about-wrap .feature-section.three-col .last-feature{margin-right:0}.about-wrap .three-col-images{text-align:center}.about-wrap .three-col-images img{margin:0 0 10px}.about-wrap .three-col-images .last-feature{float:right}.about-wrap .three-col-images .first-feature{float:left}.about-wrap .feature-section.images-stagger-right img{float:right;margin:0 5px 12px 12px}.about-wrap .feature-section.images-stagger-left img{float:left;margin:0 12px 12px 5px}@media only screen and (max-width:900px){.about-wrap .feature-section.images-stagger-left img,.about-wrap .feature-section.images-stagger-right img{clear:both}}.about-wrap .return-to-dashboard{margin:30px 0 0 -5px;font-size:14px;font-weight:bold}.about-wrap .return-to-dashboard a{text-decoration:none;padding:0 5px}.about-wrap h4.wp-people-group{margin-top:2.6em;font-size:16px}.about-wrap ul.wp-people-group{overflow:hidden;padding:5px;margin:0 -15px 0 -5px}.about-wrap ul.compact{margin-bottom:0}.about-wrap li.wp-person{float:left;margin-right:10px}.about-wrap li.wp-person img.gravatar{float:left;margin:0 10px 10px 0;padding:2px;width:60px;height:60px}.about-wrap ul.compact li.wp-person img.gravatar{width:30px;height:30px}.about-wrap li.wp-person{height:70px;width:280px;padding-bottom:15px}.about-wrap ul.compact li.wp-person{height:auto;width:180px;padding-bottom:0;margin-bottom:0}.about-wrap #wp-people-group-validators+p.wp-credits-list{margin-top:0}.about-wrap li.wp-person a.web{display:block;margin:6px 0 2px;font-size:16px;text-decoration:none}.about-wrap p.wp-credits-list a{white-space:nowrap}.freedoms-php .about-wrap ol{margin:40px 60px}.freedoms-php .about-wrap ol li{list-style-type:decimal;font-weight:bold}.freedoms-php .about-wrap ol p{font-weight:normal;margin:.6em 0}body.full-overlay-active{overflow:hidden}.wp-full-overlay{background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%;min-width:0}.wp-full-overlay-sidebar{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:fixed;width:300px;height:100%;top:0;bottom:0;left:0;padding:0;margin:0;z-index:10;overflow:auto;background:#f5f5f5;border-right:1px solid rgba(0,0,0,0.2)}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{overflow:visible}.wp-full-overlay.collapsed,.wp-full-overlay.expanded .wp-full-overlay-sidebar{margin-left:0!important}.wp-full-overlay.expanded{margin-left:300px}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{margin-left:-300px}.wp-full-overlay-sidebar:after{content:'';display:block;position:absolute;top:0;bottom:0;right:0;width:3px;box-shadow:-5px 0 4px -4px rgba(0,0,0,0.1) inset;z-index:1000}.wp-full-overlay-main{position:absolute;left:0;right:0;top:0;bottom:0;height:100%}.wp-full-overlay-sidebar .wp-full-overlay-header,.wp-full-overlay-sidebar .wp-full-overlay-footer{position:absolute;left:0;right:0;height:45px;padding:0 20px;line-height:45px;z-index:10;margin:0}.wp-full-overlay-sidebar .wp-full-overlay-header{top:0;border-top:0;border-bottom:1px solid #fff;box-shadow:inset 0 -1px 0 0 #dfdfdf}.wp-full-overlay-sidebar .wp-full-overlay-footer{bottom:0;border-bottom:0;border-top:1px solid #dfdfdf;box-shadow:inset 0 1px 0 0 #fff}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content{position:absolute;top:45px;bottom:45px;left:0;right:0;overflow:auto}.wp-full-overlay .close-full-overlay{text-decoration:none}.wp-full-overlay .collapse-sidebar{position:absolute;bottom:12px;left:0;z-index:50;display:block;width:19px;height:19px;margin-left:15px;padding:0;border-radius:50%;text-decoration:none}.wp-full-overlay.collapsed .collapse-sidebar{position:absolute;left:100%}.wp-full-overlay .collapse-sidebar-arrow{position:absolute;margin-top:2px;margin-left:2px;display:block;width:15px;height:15px;background:transparent url('../images/arrows.png') no-repeat 0 -72px}.wp-full-overlay.collapsed .collapse-sidebar-arrow{background-position:0 -108px}.wp-full-overlay .collapse-sidebar-label{position:absolute;left:100%;color:#808080;line-height:20px;margin-left:10px}.wp-full-overlay.collapsed .collapse-sidebar-label{display:none}.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label{color:#666}.wp-full-overlay,.wp-full-overlay-sidebar,.wp-full-overlay .collapse-sidebar,.wp-full-overlay-main{-webkit-transition-property:left,right,top,bottom,width,margin;-moz-transition-property:left,right,top,bottom,width,margin;-ms-transition-property:left,right,top,bottom,width,margin;-o-transition-property:left,right,top,bottom,width,margin;transition-property:left,right,top,bottom,width,margin;-webkit-transition-duration:.2s;-moz-transition-duration:.2s;-ms-transition-duration:.2s;-o-transition-duration:.2s;transition-duration:.2s}.no-customize-support .hide-if-no-customize,.customize-support .hide-if-customize{display:none}#customize-container{display:none;background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%}.customize-active #customize-container{display:block}.customize-loading #customize-container iframe{opacity:0}.customize-loading #customize-container{background:#fff url("../images/wpspin_light.gif") no-repeat fixed center center}#customize-container iframe,#theme-installer iframe{height:100%;width:100%;z-index:20;-webkit-transition:opacity .3s;-moz-transition:opacity .3s;-ms-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s}#customize-container .collapse-sidebar{bottom:16px}#theme-installer{display:none}#theme-installer.single-theme{display:block}.install-theme-info{display:none;padding:10px 20px 20px}.single-theme .install-theme-info{padding-top:15px}#theme-installer .install-theme-info{display:block}.install-theme-info .theme-install{float:right;margin-top:18px}.install-theme-info .theme-name{font-size:16px;line-height:24px;margin-bottom:0}.install-theme-info .theme-screenshot{margin-top:15px;width:258px;border:1px solid #ccc}.install-theme-info .theme-details{overflow:hidden}.theme-details .theme-version{margin:15px 0;float:left}.theme-details .star-holder{margin:14px 0;float:right}.theme-details .theme-description{float:left;color:#777;line-height:20px}#excerpt,.attachmentlinks{margin:0;height:4em;width:98%}#template div{margin-right:190px}p.pagenav{margin:0;display:inline}.pagenav span{font-weight:bold;margin:0 6px}.row-title{font-size:13px!important;font-weight:bold}.column-author img,.column-username img{float:left;margin-right:10px;margin-top:1px}.row-actions{visibility:hidden;padding:2px 0 0}.mobile .row-actions{visibility:visible}tr:hover .row-actions,div.comment-item:hover .row-actions{visibility:visible}.row-actions-visible{padding:2px 0 0}.form-table .pre{padding:8px;margin:0}table.form-table td .updated{font-size:13px}.tagchecklist{margin-left:14px;font-size:12px;overflow:auto}.tagchecklist strong{margin-left:-8px;position:absolute}.tagchecklist span{margin-right:25px;display:block;float:left;font-size:11px;line-height:1.8em;white-space:nowrap;cursor:default}.tagchecklist span a{margin:6px 0 0 -9px;cursor:pointer;width:10px;height:10px;display:block;float:left;text-indent:-9999px;overflow:hidden;position:absolute}#poststuff h2{margin-top:20px;font-size:1.5em;margin-bottom:15px;padding:0 0 3px;clear:left}#poststuff h3,.metabox-holder h3{font-size:15px;font-weight:normal;padding:7px 10px;margin:0;line-height:1}#poststuff .inside{margin:6px 0 8px}#poststuff .inside #parent_id,.inline-edit-row #post_parent{max-width:100%}#post-visibility-select,#post-formats-select{line-height:1.5em;margin-top:3px}#poststuff #submitdiv .inside{margin:0;padding:0}#titlediv,#poststuff .postarea{margin-bottom:20px}#templateside ul li a{text-decoration:none}.tool-box .title{margin:8px 0;font-size:18px;font-weight:normal;line-height:24px}#sidemenu{margin:-30px 15px 0 315px;list-style:none;position:relative;float:right;padding-left:10px;font-size:12px}#sidemenu a{padding:0 7px;display:block;float:left;line-height:28px;border-top-width:1px;border-top-style:solid;border-bottom-width:1px;border-bottom-style:solid}#sidemenu li{display:inline;line-height:200%;list-style:none;text-align:center;white-space:nowrap;margin:0;padding:0}#sidemenu a.current{font-weight:normal;padding-left:6px;padding-right:6px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px;border-width:1px;border-style:solid}#sidemenu li a .count-0{display:none}.plugin-install #description,.plugin-install-network #description{width:60%}table .vers,table .column-visible,table .column-rating{text-align:left}.error-message{color:red;font-weight:bold}body.iframe{height:98%}td.media-icon{text-align:center;width:80px;padding-top:8px;padding-bottom:8px}td.media-icon img{max-width:80px;max-height:60px}.list-ajax-loading{float:right;margin-right:9px;margin-top:-1px}.tablenav .list-ajax-loading{margin-top:7px}#howto{font-size:11px;margin:0 5px;display:block}.importers td{padding-right:14px}.importers{font-size:16px;width:auto}#namediv table{width:100%}#namediv td.first{width:10px;white-space:nowrap}#namediv input{width:98%}#namediv p{margin:10px 0}#submitdiv h3{margin-bottom:0!important}.zerosize{height:0;width:0;margin:0;border:0;padding:0;overflow:hidden;position:absolute}br.clear{height:2px;line-height:2px}.checkbox{border:0;margin:0;padding:0}fieldset{border:0;padding:0;margin:0}.post-categories{display:inline;margin:0;padding:0}.post-categories li{display:inline}.edit-box{display:none}h3:hover .edit-box{display:inline}.index-php form .input-text-wrap{background:#fff;border-style:solid;border-width:1px;padding:2px 3px;border-color:#ccc}#dashboard-widgets form .input-text-wrap input{border:0 none;outline:0;margin:0;padding:0;width:99%;color:#333}form .textarea-wrap{background:#fff;border-style:solid;border-width:1px;padding:2px;border-color:#ccc}#dashboard-widgets form .textarea-wrap textarea{border:0 none;padding:0;outline:0;width:99%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#dashboard-widgets .postbox form .submit{float:none;margin:.5em 0 0;padding:0;border:0}#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit input{margin:0}#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish{min-width:0}#dashboard-widgets a{text-decoration:none}#dashboard-widgets h3 a{text-decoration:underline}#dashboard-widgets h3 .postbox-title-action{position:absolute;right:30px;padding:0;top:5px}#dashboard-widgets h4{font-weight:normal;font-size:13px;margin:0 0 .2em;padding:0}#dashboard_right_now p.sub,#dashboard_right_now .table,#dashboard_right_now .versions{margin:-12px}#dashboard_right_now .inside{font-size:12px;padding-top:20px}#dashboard_right_now p.sub{padding:5px 0 15px;color:#8f8f8f;font-size:14px;position:absolute;top:-17px;left:15px}#dashboard_right_now .table{margin:0;padding:0;position:relative}#dashboard_right_now .table_content{float:left;border-top:#ececec 1px solid;width:45%}#dashboard_right_now .table_discussion{float:right;border-top:#ececec 1px solid;width:45%}#dashboard_right_now table td{padding:3px 0;white-space:nowrap}#dashboard_right_now table tr.first td{border-top:0}#dashboard_right_now td.b{padding-right:6px;text-align:right;font-size:14px;width:1%}#dashboard_right_now td.b a{font-size:18px}#dashboard_right_now td.b a:hover{color:#d54e21}#dashboard_right_now .t{font-size:12px;padding-right:12px;padding-top:6px;color:#777}#dashboard_right_now .t a{white-space:nowrap}#dashboard_right_now .spam{color:red}#dashboard_right_now .waiting{color:#e66f00}#dashboard_right_now .approved{color:green}#dashboard_right_now .versions{padding:6px 10px 12px;clear:both}#dashboard_right_now a.button{float:right;clear:right;position:relative;top:-5px}#dashboard_recent_comments h3{margin-bottom:0}#dashboard_recent_comments .inside{margin-top:0}#dashboard_recent_comments .comment-meta .approve{font-style:italic;font-family:sans-serif;font-size:10px}#dashboard_recent_comments .subsubsub{float:none;white-space:normal}#the-comment-list{position:relative}#the-comment-list .comment-item{padding:1em 10px;border-top:1px solid}#the-comment-list .pingback{padding-left:9px!important}#the-comment-list .comment-item,#the-comment-list #replyrow{margin:0 -10px}#the-comment-list .comment-item:first-child{border-top:0}#the-comment-list .comment-item .avatar{float:left;margin:0 10px 5px 0}#the-comment-list .comment-item h4{line-height:1.7em;margin-top:-0.4em;color:#777}#the-comment-list .comment-item h4 cite{font-style:normal;font-weight:normal}#the-comment-list .comment-item blockquote,#the-comment-list .comment-item blockquote p{margin:0;padding:0;display:inline}#dashboard_recent_comments #the-comment-list .trackback blockquote,#dashboard_recent_comments #the-comment-list .pingback blockquote{display:block}#the-comment-list .comment-item p.row-actions{margin:3px 0 0;padding:0;font-size:12px}#dashboard_quick_press h4{font-family:sans-serif;float:left;width:5em;clear:both;font-weight:normal;text-align:right;font-size:12px}#dashboard_quick_press h4 label{margin-right:10px}#dashboard_quick_press .input-text-wrap,#dashboard_quick_press .textarea-wrap{margin:0 0 1em 5em}#dashboard_quick_press .wp-media-buttons{margin:0 0 .5em 5em;padding:0}#dashboard_quick_press .wp-media-buttons a{color:#777}#dashboard-widgets #dashboard_quick_press form p.submit{margin-left:4.6em}#dashboard-widgets #dashboard_quick_press form p.submit input{float:left}#dashboard-widgets #dashboard_quick_press form p.submit #save-post{margin:0 1em 0 10px}#dashboard-widgets #dashboard_quick_press form p.submit #publish{float:right}#dashboard-widgets #dashboard_quick_press form p.submit img.waiting{vertical-align:middle;visibility:hidden;margin:4px 6px 0 0}#dashboard_recent_drafts ul,#dashboard_recent_drafts p{margin:0;padding:0;word-wrap:break-word}#dashboard_recent_drafts ul{list-style:none}#dashboard_recent_drafts ul li{margin-bottom:1em}#dashboard_recent_drafts h4{line-height:1.7em;word-wrap:break-word}#dashboard_recent_drafts h4 abbr{font-weight:normal;font-family:sans-serif;font-size:12px;color:#999;margin-left:3px}.rss-widget ul{margin:0;padding:0;list-style:none}a.rsswidget{font-size:13px;line-height:1.7em}.rss-widget ul li{line-height:1.5em;margin-bottom:12px}.rss-widget span.rss-date{color:#999;font-size:12px;margin-left:3px}.rss-widget cite{display:block;text-align:right;margin:0 0 1em;padding:0}.rss-widget cite:before{content:'\2014'}#dashboard_plugins h4{line-height:1.7em}#dashboard_plugins h5{font-weight:normal;font-size:13px;margin:0;display:inline;line-height:1.4em}#dashboard_plugins h5 a{line-height:1.4em}#dashboard_plugins .inside span{font-size:12px;padding-left:5px}#dashboard_plugins p{margin:.3em 0 1.4em;line-height:1.4em}.dashboard-comment-wrap{overflow:hidden;word-wrap:break-word}#dashboard_browser_nag a.update-browser-link{font-size:1.2em;font-weight:bold}#dashboard_browser_nag a{text-decoration:underline}#dashboard_browser_nag p.browser-update-nag.has-browser-icon{padding-right:125px}#dashboard_browser_nag .browser-icon{margin-top:-35px}#dashboard_browser_nag.postbox.browser-insecure{background-color:#ac1b1b;border-color:#ac1b1b}#dashboard_browser_nag.postbox{background-color:#e29808;background-image:none;border-color:#edc048;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;color:#fff}#dashboard_browser_nag.postbox.browser-insecure h3{border-bottom-color:#cd5a5a;color:#fff}#dashboard_browser_nag.postbox h3{border-bottom-color:#f6e2ac;text-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;background:transparent none;color:#fff}#dashboard_browser_nag a{color:#fff}#dashboard_browser_nag.browser-insecure a.browse-happy-link,#dashboard_browser_nag.browser-insecure a.update-browser-link{text-shadow:#871b15 0 1px 0}#dashboard_browser_nag a.browse-happy-link,#dashboard_browser_nag a.update-browser-link{text-shadow:#d29a04 0 1px 0}.login *{margin:0;padding:0}.login form{margin-left:8px;padding:26px 24px 46px;font-weight:normal;background:#fff;border:1px solid #e5e5e5;-moz-box-shadow:rgba(200,200,200,0.7) 0 4px 10px -1px;-webkit-box-shadow:rgba(200,200,200,0.7) 0 4px 10px -1px;box-shadow:rgba(200,200,200,0.7) 0 4px 10px -1px}.login form .forgetmenot{font-weight:normal;float:left;margin-bottom:0}.login .button-primary{font-size:13px!important;line-height:16px;padding:3px 10px;float:right}#login form p{margin-bottom:0}#login form p.submit{padding:0}.login label{color:#777;font-size:14px}.login form .forgetmenot label{font-size:12px;line-height:19px}.login form p{margin-bottom:24px}.login h1 a{background-image:url('../images/wordpress-logo.png?ver=20120216');background-size:274px 63px;background-position:top center;background-repeat:no-repeat;width:326px;height:67px;text-indent:-9999px;overflow:hidden;padding-bottom:15px;display:block}@media only screen and (-webkit-min-device-pixel-ratio:1.5){.login h1 a{background-image:url('../images/wordpress-logo-2x.png?ver=20120412');background-size:274px 63px}.wp-badge{background-image:url('../images/wp-badge-2x.png?ver=20120516');background-size:173px 194px}}#login{width:320px;padding:114px 0 0;margin:auto}#login_error,.login .message{margin:0 0 16px 8px;padding:12px}.login #nav,.login #backtoblog{text-shadow:#fff 0 1px 0;margin:0 0 0 16px;padding:16px 16px 0}#backtoblog{padding:12px 16px 0}.login form .input,.login input[type="text"]{color:#555;font-weight:200;font-size:24px;line-height:1;width:100%;padding:3px;margin-top:2px;margin-right:6px;margin-bottom:16px;border:1px solid #e5e5e5;background:#fbfbfb;outline:0;-moz-box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2);-webkit-box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2);box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2)}.login #pass-strength-result{width:250px;font-weight:bold;border-style:solid;border-width:1px;margin:12px 0 6px;padding:6px 5px;text-align:center}.mobile #login{padding:20px 0}.mobile #login form,.mobile #login .message,.mobile #login_error{margin-left:0}.mobile #login #nav,.mobile #login #backtoblog{margin-left:8px}.mobile #login h1 a{width:auto}#dashboard_right_now p.musub{margin-top:12px;border-top:1px solid #ececec;padding-left:16px;position:static}.rtl #dashboard_right_now p.musub{padding-left:0;padding-right:16px}#dashboard_right_now td.b a.musublink{font-size:16px}#dashboard_right_now div.musubtable{border-top:0}#dashboard_right_now div.musubtable .t{white-space:normal}.wp-list-table .site-deleted{background:#ff8573}.wp-list-table .site-spammed{background:#faafaa}.wp-list-table .site-archived{background:#ffebe8}.wp-list-table .site-mature{background:#fecac2}#nav-menus-frame{margin-left:300px}#wpbody-content #menu-settings-column{display:inline;width:281px;margin-left:-300px;clear:both;float:left;padding-top:24px}.no-js #wpbody-content #menu-settings-column{padding-top:31px}#menu-settings-column .inside{clear:both}.metabox-holder-disabled .postbox{opacity:.5;filter:alpha(opacity=50)}.metabox-holder-disabled .button-controls .select-all{display:none}#wpbody{position:relative}#menu-management-liquid{float:left;min-width:100%}#menu-management{position:relative;margin-right:20px;margin-top:-3px;width:100%}#menu-management .menu-edit{margin-bottom:20px}.nav-menus-php #post-body{padding:10px;border-width:1px 0;border-style:solid}#nav-menu-header,#nav-menu-footer{padding:0 10px}#nav-menu-header{border-bottom:1px solid}#nav-menu-footer{border-top:1px solid}.nav-menus-php #post-body div.updated,.nav-menus-php #post-body div.error{margin:0}.nav-menus-php #post-body-content{position:relative;float:none}#menu-management .menu-add-new abbr{font-weight:bold}#menu-management .nav-tabs-nav{margin:0 20px}#menu-management .nav-tabs-arrow{width:10px;padding:0 5px 4px;cursor:pointer;position:absolute;top:0;line-height:22px;font-size:18px;text-shadow:0 1px 0 #fff}#menu-management .nav-tabs-arrow-left{left:0}#menu-management .nav-tabs-arrow-right{right:0;text-align:right}#menu-management .nav-tabs-wrapper{width:100%;height:28px;margin-bottom:-1px;overflow:hidden}#menu-management .nav-tabs{padding-left:20px;padding-right:10px}.js #menu-management .nav-tabs{float:left;margin-left:0;margin-right:-400px}#menu-management .nav-tab{margin-bottom:0;font-size:14px}#select-nav-menu-container{text-align:right;padding:0 10px 3px 10px;margin-bottom:5px}#select-nav-menu{width:100px;display:inline}#menu-name-label{margin-top:-2px}#wpbody .open-label{display:block;float:left}#wpbody .open-label span{padding-right:10px}.js .input-with-default-title{font-style:italic}#menu-management .inside{padding:0 10px}.postbox .howto input{width:180px;float:right}.customlinkdiv .howto input{width:200px}#nav-menu-theme-locations .howto select{width:100%}#nav-menu-theme-locations .button-controls{text-align:right}.add-menu-item-view-all{height:400px}#menu-container .submit{margin:0 0 10px;padding:0}.nav-menus-php .meta-sep,.nav-menus-php .submitdelete,.nav-menus-php .submitcancel{display:block;float:left;margin:4px 0;line-height:15px}.meta-sep{padding:0 2px}#cancel-save{text-decoration:underline;font-size:12px;margin-left:20px;margin-top:5px}.list-controls{float:left;margin-top:5px}.add-to-menu{float:right}.postbox img.waiting{display:none;vertical-align:middle}.button-controls{clear:both;margin:10px 0}.show-all,.hide-all{cursor:pointer}.hide-all{display:none}#menu-name{width:270px}#manage-menu .inside{padding:0}#available-links dt{display:block}#add-custom-link .howto{font-size:12px}#add-custom-link label span{display:block;float:left;margin-top:5px;padding-right:5px}.menu-item-textbox{width:180px}.nav-menus-php .howto span{margin-top:4px;display:block;float:left}.quick-search{width:190px}.nav-menus-php .list-wrap{display:none;clear:both;margin-bottom:10px}.nav-menus-php .list-container{max-height:200px;overflow-y:auto;padding:10px 10px 5px}.nav-menus-php .postbox p.submit{margin-bottom:0}.nav-menus-php .list li{display:none;margin:0;margin-bottom:5px}.nav-menus-php .list li .menu-item-title{cursor:pointer;display:block}.nav-menus-php .list li .menu-item-title input{margin-right:3px;margin-top:-3px}#menu-container .inside{padding-bottom:10px}.menu{padding-top:1em}#menu-to-edit{padding:1em 0}.menu ul{width:100%}.menu li{margin-bottom:0;position:relative}.menu-item-bar{clear:both;line-height:1.5em;position:relative;margin:13px 0 0 0}.menu-item-handle{border:1px solid #dfdfdf;position:relative;padding-left:10px;height:auto;width:400px;line-height:35px;text-shadow:0 1px 0 #fff;overflow:hidden;word-wrap:break-word}#menu-to-edit .menu-item-invalid .menu-item-handle{background-color:#f6c9cc;background-image:-ms-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-moz-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-o-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-webkit-gradient(linear,left bottom,left top,from(#f6c9cc),to(#fdf8ff));background-image:-webkit-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:linear-gradient(bottom,#f6c9cc,#fdf8ff)}.menu-item-edit-active .menu-item-handle{-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.no-js .menu-item-edit-active .item-edit{display:none}.js .menu-item-handle{cursor:move}.menu li.deleting .menu-item-handle{background-image:none;text-shadow:0}.menu-item-handle .item-title{font-size:12px;font-weight:bold;padding:7px 0;line-height:20px;display:block;margin-right:13em}li.menu-item.ui-sortable-helper dl{margin-top:0}li.menu-item.ui-sortable-helper .menu-item-transport dl{margin-top:13px}.menu .sortable-placeholder{height:35px;width:410px;margin-top:13px}.menu-item-depth-0{margin-left:0}.menu-item-depth-1{margin-left:30px}.menu-item-depth-2{margin-left:60px}.menu-item-depth-3{margin-left:90px}.menu-item-depth-4{margin-left:120px}.menu-item-depth-5{margin-left:150px}.menu-item-depth-6{margin-left:180px}.menu-item-depth-7{margin-left:210px}.menu-item-depth-8{margin-left:240px}.menu-item-depth-9{margin-left:270px}.menu-item-depth-10{margin-left:300px}.menu-item-depth-11{margin-left:330px}.menu-item-depth-0 .menu-item-transport{margin-left:0}.menu-item-depth-1 .menu-item-transport{margin-left:-30px}.menu-item-depth-2 .menu-item-transport{margin-left:-60px}.menu-item-depth-3 .menu-item-transport{margin-left:-90px}.menu-item-depth-4 .menu-item-transport{margin-left:-120px}.menu-item-depth-5 .menu-item-transport{margin-left:-150px}.menu-item-depth-6 .menu-item-transport{margin-left:-180px}.menu-item-depth-7 .menu-item-transport{margin-left:-210px}.menu-item-depth-8 .menu-item-transport{margin-left:-240px}.menu-item-depth-9 .menu-item-transport{margin-left:-270px}.menu-item-depth-10 .menu-item-transport{margin-left:-300px}.menu-item-depth-11 .menu-item-transport{margin-left:-330px}body.menu-max-depth-0{min-width:950px!important}body.menu-max-depth-1{min-width:980px!important}body.menu-max-depth-2{min-width:1010px!important}body.menu-max-depth-3{min-width:1040px!important}body.menu-max-depth-4{min-width:1070px!important}body.menu-max-depth-5{min-width:1100px!important}body.menu-max-depth-6{min-width:1130px!important}body.menu-max-depth-7{min-width:1160px!important}body.menu-max-depth-8{min-width:1190px!important}body.menu-max-depth-9{min-width:1220px!important}body.menu-max-depth-10{min-width:1250px!important}body.menu-max-depth-11{min-width:1280px!important}.item-type{font-size:12px;padding-right:10px}.item-controls{font-size:12px;position:absolute;right:20px;top:-1px}.item-controls a{text-decoration:none}.item-controls a:hover{cursor:pointer}.item-controls .item-order{padding-right:10px}.nav-menus-php .item-edit{position:absolute;right:-20px;top:0;display:block;width:30px;height:36px;overflow:hidden;text-indent:-999em;border-bottom:1px solid;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.menu-instructions-inactive{display:none}.menu-item-settings{display:block;width:400px;padding:10px 0 10px 10px;border:solid;border-width:0 1px 1px 1px;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.menu-item-edit-active .menu-item-settings{display:block}.menu-item-edit-inactive .menu-item-settings{display:none}.add-menu-item-pagelinks{margin:.5em auto;text-align:center}.link-to-original{display:block;margin:0 0 10px;padding:3px 5px 5px;font-size:12px;font-style:italic}.link-to-original a{padding-left:4px;font-style:normal}.hidden-field{display:none}.menu-item-settings .description-thin,.menu-item-settings .description-wide{margin-right:10px;float:left}.description-thin{width:190px;height:40px}.description-wide{width:390px}.menu-item-actions{padding-top:15px}#cancel-save{cursor:pointer}.nav-menus-php .major-publishing-actions{clear:both;padding:3px 0 5px}.nav-menus-php .major-publishing-actions .publishing-action{text-align:right;float:right;line-height:23px;margin:5px 0 1px}.nav-menus-php .major-publishing-actions .delete-action{vertical-align:middle;text-align:left;float:left;padding-right:15px;margin-top:5px}.menu-name-label span,.auto-add-pages label{font-size:12px;font-style:normal}.menu-name-label{margin-right:15px}.auto-add-pages input{margin-top:0}.auto-add-pages{margin-top:4px;float:left}.nav-menus-php .submitbox .submitcancel{border-bottom:1px solid;padding:1px 2px;text-decoration:none}.nav-menus-php .major-publishing-actions .form-invalid{padding-left:4px;margin-left:-4px;border:0 none}#menu-item-name-wrap:after,#menu-item-url-wrap:after,#menu-name-label:after,#menu-settings-column .inside:after,#nav-menus-frame:after,.nav-menus-php #post-body-content:after,.nav-menus-php .button-controls:after,.nav-menus-php .major-publishing-actions:after,.nav-menus-php .menu-item-settings:after{clear:both;content:".";display:block;height:0;visibility:hidden}#nav-menus-frame,.button-controls,#menu-item-url-wrap,#menu-item-name-wrap{display:block}div.star-holder{position:relative;height:17px;width:100px;background:url('../images/stars.png?ver=20120307') repeat-x bottom left}div.star-holder .star-rating{background:url('../images/stars.png?ver=20120307') repeat-x top left;height:17px;float:left}div.action-links{font-weight:normal;margin:6px 0 0}#plugin-information-header{margin:0;padding:0 5px;font-weight:bold;position:relative;border-bottom-width:1px;border-bottom-style:solid;height:2.5em}#plugin-information ul#sidemenu{font-weight:normal;margin:0 5px;position:absolute;left:0;bottom:-1px}#plugin-information p.action-button{width:100%;padding-bottom:0;margin-bottom:0;margin-top:10px;-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:3px}#plugin-information .action-button a{text-align:center;font-weight:bold;text-decoration:none;display:block;line-height:2em}#plugin-information h2{clear:none!important;margin-right:200px}#plugin-information .fyi{margin:0 10px 50px;width:210px}#plugin-information .fyi h2{font-size:.9em;margin-bottom:0;margin-right:0}#plugin-information .fyi h2.mainheader{padding:5px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px}#plugin-information .fyi ul{padding:10px 5px 10px 7px;margin:0;list-style:none;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}#plugin-information .fyi li{margin-right:0}#plugin-information #section-holder{padding:10px}#plugin-information .section ul,#plugin-information .section ol{margin-left:16px;list-style-type:square;list-style-image:none}#plugin-information #section-screenshots ol{list-style:none;margin:0}#plugin-information #section-screenshots li img{vertical-align:text-top;max-width:100%;width:auto;height:auto}#plugin-information #section-screenshots li p{font-style:italic;padding-left:20px;padding-bottom:2em}#plugin-information #section-screenshots ol,#plugin-information .updated,#plugin-information pre{margin-right:215px}#plugin-information pre{padding:7px;overflow:auto}body.press-this{color:#333;margin:0;padding:0;min-width:675px;min-height:400px}img{border:0}.press-this #wphead{height:32px;margin-left:0;margin-right:0;margin-bottom:5px}.press-this #header-logo{float:left;margin:7px 7px 0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.press-this #wphead h1{font-weight:normal;font-size:16px;line-height:32px;margin:0;float:left}.press-this #wphead h1 a{text-decoration:none}.press-this #wphead h1 a:hover{text-decoration:underline}.press-this #message{margin:10px 0}.press-this-sidebar{float:right;width:200px;padding-top:10px}.press-this #title{margin-left:0;margin-right:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.press-this .tagchecklist span a{background:transparent url(../images/xit.gif) no-repeat 0 0}.press-this #titlediv{margin:0}.press-this .wp-media-buttons{cursor:default;padding:8px 8px 0}.press-this .howto{margin-top:2px;margin-bottom:3px;font-size:12px;font-style:italic;display:block}.press-this #poststuff{margin:0 10px 10px}#poststuff #editor-toolbar{height:30px}div.zerosize{border:0 none;height:0;margin:0;overflow:hidden;padding:0;width:0}.posting{margin-right:212px;position:relative}.press-this .inner-sidebar{width:200px}.press-this .inner-sidebar .sleeve{padding-top:5px}.press-this #submitdiv p{margin:0;padding:6px}.press-this #submitdiv #publishing-actions{border-bottom:1px solid #dfdfdf}.press-this #publish{float:right}.press-this #poststuff h2,.press-this #poststuff h3{font-size:14px;line-height:1}.press-this #tagsdiv-post_tag h3,.press-this #categorydiv h3{cursor:pointer}.press-this #submitdiv h3{cursor:default}h3.tb{text-shadow:0 1px 0 #fff;font-weight:bold;font-size:12px;margin-left:5px}#TB_window{border:1px solid #333}.press-this .postbox,.press-this .stuffbox{margin-bottom:10px;min-width:0}.postbox:hover .handlediv,.stuffbox:hover .handlediv{background:transparent url(../images/arrows.png) no-repeat 6px 7px}.press-this #submitdiv:hover .handlediv{background:0}.tbtitle{font-size:1.7em;outline:0;padding:3px 4px;border-color:#dfdfdf}.press-this .actions{float:right;margin:-19px 0 0}.press-this #extra-fields .actions{margin:-25px -7px 0 0}.press-this .actions li{float:left;list-style:none;margin-right:10px}#extra-fields .button{margin-right:5px}#photo_saving{margin:0 8px 8px;vertical-align:middle}#img_container_container{overflow:auto}#extra-fields{margin-top:10px;position:relative}#extra-fields h2{margin:12px}#waiting{margin-top:10px}#extra-fields .postbox{margin-bottom:5px}#extra-fields .titlewrap{padding:0;overflow:auto;height:100px}#img_container a{display:block;float:left;overflow:hidden;vertical-align:center}#img_container img,#img_container a{width:68px;height:68px}#img_container img{border:0;background-color:#f4f4f4;cursor:pointer}#img_container a,#img_container a:link,#img_container a:visited{border:1px solid #ccc;display:block;position:relative}#img_container a:hover,#img_container a:active{border-color:#000;z-index:1000;border-width:2px;margin:-1px}#embed-code{width:100%;height:98px}.press-this .categorydiv div.tabs-panel{height:100px}.press-this .tagsdiv .newtag{width:130px}.press-this #content{margin:5px 0;padding:0 5px;border:0 none;height:357px;font-family:Consolas,Monaco,monospace;font-size:13px;line-height:19px;background:transparent}#saving{display:inline;vertical-align:middle}#TB_ajaxContent #options{position:absolute;top:20px;right:25px;padding:5px}#TB_ajaxContent h3{margin-bottom:.25em}.error a{text-decoration:underline}.updated a{text-decoration:none;padding-bottom:2px}.taghint{color:#aaa;margin:-17px 0 0 7px;visibility:hidden}input.newtag ~ div.taghint{visibility:visible}input.newtag:focus ~ div.taghint{visibility:hidden}#mce_fullscreen_container{background:#fff}#photo-add-url-div input[type="text"]{width:300px}.alignleft h3{margin:0}h3 span{font-weight:normal}#template textarea{font-family:Consolas,Monaco,monospace;font-size:12px;width:97%;background:#f9f9f9;outline:0}#template p{width:97%}#templateside{float:right;width:190px;word-wrap:break-word}#templateside h3,#postcustomstuff p.submit{margin:0}#templateside h4{margin:1em 0 0}#templateside ol,#templateside ul{margin:.5em;padding:0}#templateside li{margin:4px 0}#templateside ul li a span.highlight{display:block}.nonessential{font-size:11px;font-style:italic;padding-left:12px}.highlight{padding:3px 3px 3px 12px;margin-left:-12px;font-weight:bold;border:0 none}#documentation{margin-top:10px}#documentation label{line-height:22px;vertical-align:top;font-weight:bold}.fileedit-sub{padding:10px 0 8px;line-height:180%}#filter-box{clear:both}.feature-filter{padding:8px 12px 0}.feature-filter .feature-group{float:left;margin:5px 10px 10px}.feature-filter .feature-group li{display:inline;float:left;list-style-type:none;padding-right:25px;width:150px}.feature-container{width:100%;overflow:auto;margin-bottom:10px}div.widget-liquid-left{float:left;clear:left;width:100%;margin-right:-325px}div#widgets-left{margin-left:5px;margin-right:325px}div#widgets-right{width:285px;margin:0 auto}div.widget-liquid-right{float:right;clear:right;width:300px}.widget-liquid-right .widget,.inactive-sidebar .widget,.widget-liquid-right .sidebar-description{width:250px;margin:0 auto 20px;overflow:hidden}.widget-liquid-right .sidebar-description{margin-bottom:10px}.inactive-sidebar .widget{margin:0 10px 20px;float:left}div.sidebar-name h3{font-weight:normal;font-size:15px;margin:0;padding:8px 10px;overflow:hidden;white-space:nowrap}div.sidebar-name{cursor:pointer;font-size:13px;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}.js .closed .sidebar-name{-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.widget-liquid-right .widgets-sortables,#widgets-left .widget-holder{border-width:0 1px 1px;border-style:none solid solid;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.js .closed .widgets-sortables,.js .closed .widget-holder{display:none}.widget-liquid-right .widgets-sortables{padding:15px 0 0}#available-widgets .widget-holder{padding:7px 5px 0}#available-widgets .widget{-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.inactive-sidebar{padding:5px 5px 0}#widget-list .widget{width:250px;margin:0 10px 15px;border:0 none;background:transparent;float:left}#widget-list .widget-description{padding:5px 8px}.widget-placeholder{border-width:1px;border-style:dashed;margin:0 auto 20px;height:26px;width:250px}.inactive-sidebar .widget-placeholder{margin:0 10px 20px;float:left}div.widgets-holder-wrap{padding:0;margin:10px 0 20px}#widgets-left #available-widgets{background-color:transparent;border:0 none}ul#widget-list{list-style:none;margin:0;padding:0;min-height:100px}.widget .widget-top{margin-bottom:-1px;font-size:12px;font-weight:bold;height:26px;overflow:hidden}.widget-top .widget-title{padding:7px 9px}.widget-top .widget-title-action{float:right}a.widget-action{display:block;width:24px;height:26px}#available-widgets a.widget-action{display:none}.widget-top a.widget-action{background:transparent url(../images/arrows.png) no-repeat 4px 6px}.widget-top a.widget-action:hover{background:transparent url(../images/arrows-dark.png) no-repeat 4px 6px}.widget .widget-inside,.widget .widget-description{padding:12px 12px 10px;font-size:12px;line-height:16px}.widget-inside,.widget-description{display:none}#available-widgets .widget-description{display:block}.widget .widget-inside p{margin:0 0 1em;padding:0}.widget-title h4{margin:0;line-height:1;overflow:hidden;white-space:nowrap}.widgets-sortables{min-height:90px}.widget-control-actions{margin-top:8px}.widget-control-actions a{text-decoration:none}.widget-control-actions a:hover{text-decoration:underline}.widget-control-actions .ajax-feedback{padding-bottom:3px}.widget-control-actions div.alignleft{margin-top:6px}div#sidebar-info{padding:0 1em;margin-bottom:1em;font-size:12px}.widget-title a,.widget-title a:hover{text-decoration:none;border-bottom:0}.widget-control-edit{display:block;font-size:12px;font-weight:normal;line-height:26px;padding:0 8px 0 0}a.widget-control-edit{text-decoration:none}.widget-control-edit .add,.widget-control-edit .edit{display:none}#available-widgets .widget-control-edit .add,#widgets-right .widget-control-edit .edit,.inactive-sidebar .widget-control-edit .edit{display:inline}.editwidget{margin:0 auto 15px}.editwidget .widget-inside{display:block;padding:10px}.inactive p.description{margin:5px 15px 10px}#available-widgets p.description{margin:0 12px 12px}.widget-position{margin-top:8px}.inactive{padding-top:2px}.sidebar-name-arrow{float:right;height:29px;width:26px}.widget-title .in-widget-title{font-size:12px;white-space:nowrap}#removing-widget{display:none;font-weight:normal;padding-left:15px;font-size:12px;line-height:1}.widget-control-noform,#access-off,.widgets_access .widget-action,.widgets_access .sidebar-name-arrow,.widgets_access #access-on,.widgets_access .widget-holder .description{display:none}.widgets_access .widget-holder,.widgets_access #widget-list{padding-top:10px}.widgets_access #access-off{display:inline}.widgets_access #wpbody-content .widget-title-action,.widgets_access #wpbody-content .widget-control-edit,.widgets_access .closed .widgets-sortables,.widgets_access .closed .widget-holder{display:block}.widgets_access .closed .sidebar-name{-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.widgets_access .sidebar-name,.widgets_access .widget .widget-top{cursor:default}@media only screen and (max-width:768px){#col-left{width:100%}#col-right{width:100%}}@media only screen and (min-width:769px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:860px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (min-width:980px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:768px){#col-left{width:100%}#col-right{width:100%}.form-field input,.form-field textarea{width:99%}.form-wrap .form-field{padding:0}#profile-page .form-table textarea{max-width:400px;width:auto}}.locale-zh-cn .howto,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn #utc-time,.locale-zh-cn #local-time,.locale-zh-cn p.install-help,.locale-zh-cn p.help,.locale-zh-cn p.description,.locale-zh-cn span.description,.locale-zh-cn .form-wrap p{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #wp-fullscreen-tagline{font-family:KaiTi,"楷体",sans-serif}.locale-zh-cn #wp-fullscreen-modes a{font-size:12px}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-ru-ru #dashboard_quick_press .input-text-wrap,.locale-ru-ru #dashboard_quick_press .textarea-wrap,.locale-ru-ru #dashboard_quick_press .wp-media-buttons{margin-left:5.7em}.locale-ru-ru #dashboard_quick_press h4{width:5.7em}.locale-ru-ru #dashboard-widgets #dashboard_quick_press form p.submit{margin-left:5.3em}.locale-ru-ru .inline-edit-row fieldset label span.title{width:auto;min-width:5em}.locale-ru-ru.press-this .posting{margin-right:257px}.locale-ru-ru.press-this #photo-add-url-div input[type="text"]{width:255px}.locale-ru-ru.press-this #side-sortables{width:245px}.locale-lt-lt #dashboard_quick_press .input-text-wrap,.locale-lt-lt #dashboard_quick_press .textarea-wrap,.locale-lt-lt #dashboard_quick_press .wp-media-buttons{margin-left:7em}.locale-lt-lt #dashboard_quick_press h4{width:7em}.locale-lt-lt .inline-edit-row fieldset label span.title{width:8em}.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em} \ No newline at end of file diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-admin/css/wp-admin.dev.css ./wordpress-3.4.1/wp-admin/css/wp-admin.dev.css *** ./wordpress-3.4/wp-admin/css/wp-admin.dev.css 2012-06-12 12:11:09.000000000 -0500 --- ./wordpress-3.4.1/wp-admin/css/wp-admin.dev.css 2012-06-21 14:44:28.000000000 -0500 *************** *** 1968,1980 **** box-sizing: border-box; } ! .postbox-container .meta-box-sortables:empty { ! min-height: 0; ! height: 0; ! } ! ! .metabox-holder .postbox-container .empty-container, ! #post-body.columns-2 #side-sortables:empty { border: 3px dashed #CCCCCC; height: 250px; } --- 1968,1974 ---- box-sizing: border-box; } ! .metabox-holder .postbox-container .empty-container { border: 3px dashed #CCCCCC; height: 250px; } *************** *** 2045,2051 **** width: 50.5%; } - #dashboard-widgets.metabox-holder .postbox-container .empty-container, #dashboard-widgets #postbox-container-3 .empty-container, #dashboard-widgets #postbox-container-4 .empty-container { border: 0 none; --- 2039,2044 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-admin/customize.php ./wordpress-3.4.1/wp-admin/customize.php *** ./wordpress-3.4/wp-admin/customize.php 2012-06-12 13:39:16.000000000 -0500 --- ./wordpress-3.4.1/wp-admin/customize.php 2012-06-26 13:53:45.000000000 -0500 *************** *** 7,12 **** --- 7,14 ---- * @since 3.4.0 */ + define( 'IFRAME_REQUEST', true ); + require_once( './admin.php' ); if ( ! current_user_can( 'edit_theme_options' ) ) wp_die( __( 'Cheatin’ uh?' ) ); *************** *** 65,71 **** <body class="<?php echo esc_attr( $body_class ); ?>"> <div class="wp-full-overlay expanded"> <form id="customize-controls" class="wrap wp-full-overlay-sidebar"> - <?php wp_nonce_field( 'customize_controls-' . $wp_customize->get_stylesheet() ); ?> <div id="customize-header-actions" class="wp-full-overlay-header"> <?php $save_text = $wp_customize->is_theme_active() ? __( 'Save & Publish' ) : __( 'Save & Activate' ); --- 67,72 ---- *************** *** 175,180 **** --- 176,185 ---- ), 'settings' => array(), 'controls' => array(), + 'nonce' => array( + 'save' => wp_create_nonce( 'save-customize_' . $wp_customize->get_stylesheet() ), + 'preview' => wp_create_nonce( 'preview-customize_' . $wp_customize->get_stylesheet() ) + ), ); foreach ( $wp_customize->settings() as $id => $setting ) { diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-admin/includes/meta-boxes.php ./wordpress-3.4.1/wp-admin/includes/meta-boxes.php *** ./wordpress-3.4/wp-admin/includes/meta-boxes.php 2012-05-25 08:45:16.000000000 -0500 --- ./wordpress-3.4.1/wp-admin/includes/meta-boxes.php 2012-06-25 14:59:10.000000000 -0500 *************** *** 483,499 **** if ( 1 > $total ) { echo '<p id="no-comments">' . __('No comments yet.') . '</p>'; } else { ! $hidden = get_hidden_meta_boxes('post'); if ( ! in_array('commentsdiv', $hidden) ) { ?> <script type="text/javascript">jQuery(document).ready(function(){commentsBox.get(<?php echo $total; ?>, 10);});</script> <?php } - } ! ?> ! <p class="hide-if-no-js hidden" id="show-comments"><a href="#commentstatusdiv" onclick="commentsBox.get(<?php echo $total; ?>);return false;"><?php _e('Show comments'); ?></a> <img class="waiting" style="display:none;" src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" /></p> ! <?php wp_comment_trashnotice(); } --- 483,499 ---- if ( 1 > $total ) { echo '<p id="no-comments">' . __('No comments yet.') . '</p>'; } else { ! $hidden = get_hidden_meta_boxes( get_current_screen() ); if ( ! in_array('commentsdiv', $hidden) ) { ?> <script type="text/javascript">jQuery(document).ready(function(){commentsBox.get(<?php echo $total; ?>, 10);});</script> <?php } ! ?> ! <p class="hide-if-no-js" id="show-comments"><a href="#commentstatusdiv" onclick="commentsBox.get(<?php echo $total; ?>);return false;"><?php _e('Show comments'); ?></a> <img class="waiting" style="display:none;" src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" /></p> ! <?php ! } wp_comment_trashnotice(); } diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-admin/includes/plugin.php ./wordpress-3.4.1/wp-admin/includes/plugin.php *** ./wordpress-3.4/wp-admin/includes/plugin.php 2012-04-20 19:45:53.000000000 -0500 --- ./wordpress-3.4.1/wp-admin/includes/plugin.php 2012-06-25 23:03:31.000000000 -0500 *************** *** 521,526 **** --- 521,527 ---- if ( is_multisite() && ( $network_wide || is_network_only_plugin($plugin) ) ) { $network_wide = true; $current = get_site_option( 'active_sitewide_plugins', array() ); + $_GET['networkwide'] = 1; // Back compat for plugins looking for this value. } else { $current = get_option( 'active_plugins', array() ); } diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-admin/includes/update-core.php ./wordpress-3.4.1/wp-admin/includes/update-core.php *** ./wordpress-3.4/wp-admin/includes/update-core.php 2012-05-25 13:12:29.000000000 -0500 --- ./wordpress-3.4.1/wp-admin/includes/update-core.php 2012-06-26 16:54:32.000000000 -0500 *************** *** 477,483 **** $mysql_version = $wpdb->db_version(); $required_php_version = '5.2.4'; $required_mysql_version = '5.0'; ! $wp_version = '3.4'; $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.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; diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-admin/includes/update.php ./wordpress-3.4.1/wp-admin/includes/update.php *** ./wordpress-3.4/wp-admin/includes/update.php 2012-05-03 11:41:59.000000000 -0500 --- ./wordpress-3.4.1/wp-admin/includes/update.php 2012-06-25 15:30:59.000000000 -0500 *************** *** 264,270 **** $themes_allowedtags = array('a' => array('href' => array(),'title' => array()),'abbr' => array('title' => array()),'acronym' => array('title' => array()),'code' => array(),'em' => array(),'strong' => array()); $theme_name = wp_kses( $theme['Name'], $themes_allowedtags ); ! $details_url = self_admin_url("theme-install.php?tab=theme-information&theme=$theme_key&TB_iframe=true&width=600&height=400"); $wp_list_table = _get_list_table('WP_MS_Themes_List_Table'); --- 264,270 ---- $themes_allowedtags = array('a' => array('href' => array(),'title' => array()),'abbr' => array('title' => array()),'acronym' => array('title' => array()),'code' => array(),'em' => array(),'strong' => array()); $theme_name = wp_kses( $theme['Name'], $themes_allowedtags ); ! $details_url = add_query_arg( array( 'TB_iframe' => 'true', 'width' => 1024, 'height' => 800 ), $current->response[ $theme_key ]['url'] ); $wp_list_table = _get_list_table('WP_MS_Themes_List_Table'); diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-admin/js/common.dev.js ./wordpress-3.4.1/wp-admin/js/common.dev.js *** ./wordpress-3.4/wp-admin/js/common.dev.js 2012-06-12 11:36:32.000000000 -0500 --- ./wordpress-3.4.1/wp-admin/js/common.dev.js 2012-06-20 19:10:05.000000000 -0500 *************** *** 216,222 **** m.addClass('sub-open'); }, out: function(){ ! $(this).find('.wp-submenu').removeClass('sub-open'); }, timeout: 200, sensitivity: 7, --- 216,222 ---- m.addClass('sub-open'); }, out: function(){ ! $(this).find('.wp-submenu').removeClass('sub-open').css('margin-top', ''); }, timeout: 200, sensitivity: 7, diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-admin/js/common.js ./wordpress-3.4.1/wp-admin/js/common.js *** ./wordpress-3.4/wp-admin/js/common.js 2012-06-12 11:58:23.000000000 -0500 --- ./wordpress-3.4.1/wp-admin/js/common.js 2012-06-26 16:51:24.000000000 -0500 *************** *** 1 **** ! var showNotice,adminMenu,columns,validateForm,screenMeta;(function(a){adminMenu={init:function(){},fold:function(){},restoreMenuState:function(){},toggle:function(){},favorites:function(){}};columns={init:function(){var b=this;a(".hide-column-tog","#adv-settings").click(function(){var d=a(this),c=d.val();if(d.prop("checked")){b.checked(c)}else{b.unchecked(c)}columns.saveManageColumnsState()})},saveManageColumnsState:function(){var b=this.hidden();a.post(ajaxurl,{action:"hidden-columns",hidden:b,screenoptionnonce:a("#screenoptionnonce").val(),page:pagenow})},checked:function(b){a(".column-"+b).show();this.colSpanChange(+1)},unchecked:function(b){a(".column-"+b).hide();this.colSpanChange(-1)},hidden:function(){return a(".manage-column").filter(":hidden").map(function(){return this.id}).get().join(",")},useCheckboxesForHidden:function(){this.hidden=function(){return a(".hide-column-tog").not(":checked").map(function(){var b=this.id;return b.substring(b,b.length-5)}).get().join(",")}},colSpanChange:function(b){var d=a("table").find(".colspanchange"),c;if(!d.length){return}c=parseInt(d.attr("colspan"),10)+b;d.attr("colspan",c.toString())}};a(document).ready(function(){columns.init()});validateForm=function(b){return !a(b).find(".form-required").filter(function(){return a("input:visible",this).val()==""}).addClass("form-invalid").find("input:visible").change(function(){a(this).closest(".form-invalid").removeClass("form-invalid")}).size()};showNotice={warn:function(){var b=commonL10n.warnDelete||"";if(confirm(b)){return true}return false},note:function(b){alert(b)}};screenMeta={element:null,toggles:null,page:null,init:function(){this.element=a("#screen-meta");this.toggles=a(".screen-meta-toggle a");this.page=a("#wpcontent");this.toggles.click(this.toggleEvent)},toggleEvent:function(c){var b=a(this.href.replace(/.+#/,"#"));c.preventDefault();if(!b.length){return}if(b.is(":visible")){screenMeta.close(b,a(this))}else{screenMeta.open(b,a(this))}},open:function(b,c){a(".screen-meta-toggle").not(c.parent()).css("visibility","hidden");b.parent().show();b.slideDown("fast",function(){c.addClass("screen-meta-active")})},close:function(b,c){b.slideUp("fast",function(){c.removeClass("screen-meta-active");a(".screen-meta-toggle").css("visibility","");b.parent().hide()})}};a(".contextual-help-tabs").delegate("a","click focus",function(d){var c=a(this),b;d.preventDefault();if(c.is(".active a")){return false}a(".contextual-help-tabs .active").removeClass("active");c.parent("li").addClass("active");b=a(c.attr("href"));a(".help-tab-content").not(b).removeClass("active").hide();b.addClass("active").show()});a(document).ready(function(){var i=false,c,e,j,h,b=a("#adminmenu"),d=a("input.current-page"),f=d.val(),g;g=function(k,m){var n=a(m),l=n.attr("tabindex");if(l){n.attr("tabindex","0").attr("tabindex",l)}};a("#collapse-menu",b).click(function(){var k=a(document.body);a("#adminmenu div.wp-submenu").css("margin-top","");if(k.hasClass("folded")){k.removeClass("folded");setUserSetting("mfold","o")}else{k.addClass("folded");setUserSetting("mfold","f")}return false});a("li.wp-has-submenu",b).hoverIntent({over:function(s){var t,q,k,r,l=a(this).find(".wp-submenu"),u,n,p;if(l.is(":visible")){return}u=a(this).offset().top;n=a(window).scrollTop();p=u-n-30;t=u+l.height()+1;q=a("#wpwrap").height();k=60+t-q;r=a(window).height()+n-15;if(r<(t-k)){k=t-r}if(k>p){k=p}if(k>1){l.css("margin-top","-"+k+"px")}else{l.css("margin-top","")}b.find(".wp-submenu").removeClass("sub-open");l.addClass("sub-open")},out:function(){a(this).find(".wp-submenu").removeClass("sub-open")},timeout:200,sensitivity:7,interval:90});a("li.wp-has-submenu > a.wp-not-current-submenu",b).bind("keydown.adminmenu",function(l){if(l.which!=13){return}var k=a(l.target);l.stopPropagation();l.preventDefault();b.find(".wp-submenu").removeClass("sub-open");k.siblings(".wp-submenu").toggleClass("sub-open").find('a[role="menuitem"]').each(g)}).each(g);a('a[role="menuitem"]',b).bind("keydown.adminmenu",function(l){if(l.which!=27){return}var k=a(l.target);l.stopPropagation();l.preventDefault();k.add(k.siblings()).closest(".sub-open").removeClass("sub-open").siblings("a.wp-not-current-submenu").focus()});a("div.wrap h2:first").nextAll("div.updated, div.error").addClass("below-h2");a("div.updated, div.error").not(".below-h2, .inline").insertAfter(a("div.wrap h2:first"));screenMeta.init();a("tbody").children().children(".check-column").find(":checkbox").click(function(k){if("undefined"==k.shiftKey){return true}if(k.shiftKey){if(!i){return true}c=a(i).closest("form").find(":checkbox");e=c.index(i);j=c.index(this);h=a(this).prop("checked");if(0<e&&0<j&&e!=j){c.slice(e,j).prop("checked",function(){if(a(this).closest("tr").is(":visible")){return h}return false})}}i=this;return true});a("thead, tfoot").find(".check-column :checkbox").click(function(m){var n=a(this).prop("checked"),l="undefined"==typeof toggleWithKeyboard?false:toggleWithKeyboard,k=m.shiftKey||l;a(this).closest("table").children("tbody").filter(":visible").children().children(".check-column").find(":checkbox").prop("checked",function(){if(a(this).closest("tr").is(":hidden")){return false}if(k){return a(this).prop("checked")}else{if(n){return true}}return false});a(this).closest("table").children("thead, tfoot").filter(":visible").children().children(".check-column").find(":checkbox").prop("checked",function(){if(k){return false}else{if(n){return true}}return false})});a("#default-password-nag-no").click(function(){setUserSetting("default_password_nag","hide");a("div.default-password-nag").hide();return false});a("#newcontent").bind("keydown.wpevent_InsertTab",function(p){if(p.keyCode!=9){return true}var m=p.target,r=m.selectionStart,l=m.selectionEnd,q=m.value,k,o;try{this.lastKey=9}catch(n){}if(document.selection){m.focus();o=document.selection.createRange();o.text="\t"}else{if(r>=0){k=this.scrollTop;m.value=q.substring(0,r).concat("\t",q.substring(l));m.selectionStart=m.selectionEnd=r+1;this.scrollTop=k}}if(p.stopPropagation){p.stopPropagation()}if(p.preventDefault){p.preventDefault()}});a("#newcontent").bind("blur.wpevent_InsertTab",function(k){if(this.lastKey&&9==this.lastKey){this.focus()}});if(d.length){d.closest("form").submit(function(k){if(a('select[name="action"]').val()==-1&&a('select[name="action2"]').val()==-1&&d.val()==f){d.val("1")}})}});a(document).bind("wp_CloseOnEscape",function(c,b){if(typeof(b.cb)!="function"){return}if(typeof(b.condition)!="function"||b.condition()){b.cb()}return true})})(jQuery); \ No newline at end of file --- 1 ---- ! var showNotice,adminMenu,columns,validateForm,screenMeta;(function(a){adminMenu={init:function(){},fold:function(){},restoreMenuState:function(){},toggle:function(){},favorites:function(){}};columns={init:function(){var b=this;a(".hide-column-tog","#adv-settings").click(function(){var d=a(this),c=d.val();if(d.prop("checked")){b.checked(c)}else{b.unchecked(c)}columns.saveManageColumnsState()})},saveManageColumnsState:function(){var b=this.hidden();a.post(ajaxurl,{action:"hidden-columns",hidden:b,screenoptionnonce:a("#screenoptionnonce").val(),page:pagenow})},checked:function(b){a(".column-"+b).show();this.colSpanChange(+1)},unchecked:function(b){a(".column-"+b).hide();this.colSpanChange(-1)},hidden:function(){return a(".manage-column").filter(":hidden").map(function(){return this.id}).get().join(",")},useCheckboxesForHidden:function(){this.hidden=function(){return a(".hide-column-tog").not(":checked").map(function(){var b=this.id;return b.substring(b,b.length-5)}).get().join(",")}},colSpanChange:function(b){var d=a("table").find(".colspanchange"),c;if(!d.length){return}c=parseInt(d.attr("colspan"),10)+b;d.attr("colspan",c.toString())}};a(document).ready(function(){columns.init()});validateForm=function(b){return !a(b).find(".form-required").filter(function(){return a("input:visible",this).val()==""}).addClass("form-invalid").find("input:visible").change(function(){a(this).closest(".form-invalid").removeClass("form-invalid")}).size()};showNotice={warn:function(){var b=commonL10n.warnDelete||"";if(confirm(b)){return true}return false},note:function(b){alert(b)}};screenMeta={element:null,toggles:null,page:null,init:function(){this.element=a("#screen-meta");this.toggles=a(".screen-meta-toggle a");this.page=a("#wpcontent");this.toggles.click(this.toggleEvent)},toggleEvent:function(c){var b=a(this.href.replace(/.+#/,"#"));c.preventDefault();if(!b.length){return}if(b.is(":visible")){screenMeta.close(b,a(this))}else{screenMeta.open(b,a(this))}},open:function(b,c){a(".screen-meta-toggle").not(c.parent()).css("visibility","hidden");b.parent().show();b.slideDown("fast",function(){c.addClass("screen-meta-active")})},close:function(b,c){b.slideUp("fast",function(){c.removeClass("screen-meta-active");a(".screen-meta-toggle").css("visibility","");b.parent().hide()})}};a(".contextual-help-tabs").delegate("a","click focus",function(d){var c=a(this),b;d.preventDefault();if(c.is(".active a")){return false}a(".contextual-help-tabs .active").removeClass("active");c.parent("li").addClass("active");b=a(c.attr("href"));a(".help-tab-content").not(b).removeClass("active").hide();b.addClass("active").show()});a(document).ready(function(){var i=false,c,e,j,h,b=a("#adminmenu"),d=a("input.current-page"),f=d.val(),g;g=function(k,m){var n=a(m),l=n.attr("tabindex");if(l){n.attr("tabindex","0").attr("tabindex",l)}};a("#collapse-menu",b).click(function(){var k=a(document.body);a("#adminmenu div.wp-submenu").css("margin-top","");if(k.hasClass("folded")){k.removeClass("folded");setUserSetting("mfold","o")}else{k.addClass("folded");setUserSetting("mfold","f")}return false});a("li.wp-has-submenu",b).hoverIntent({over:function(s){var t,q,k,r,l=a(this).find(".wp-submenu"),u,n,p;if(l.is(":visible")){return}u=a(this).offset().top;n=a(window).scrollTop();p=u-n-30;t=u+l.height()+1;q=a("#wpwrap").height();k=60+t-q;r=a(window).height()+n-15;if(r<(t-k)){k=t-r}if(k>p){k=p}if(k>1){l.css("margin-top","-"+k+"px")}else{l.css("margin-top","")}b.find(".wp-submenu").removeClass("sub-open");l.addClass("sub-open")},out:function(){a(this).find(".wp-submenu").removeClass("sub-open").css("margin-top","")},timeout:200,sensitivity:7,interval:90});a("li.wp-has-submenu > a.wp-not-current-submenu",b).bind("keydown.adminmenu",function(l){if(l.which!=13){return}var k=a(l.target);l.stopPropagation();l.preventDefault();b.find(".wp-submenu").removeClass("sub-open");k.siblings(".wp-submenu").toggleClass("sub-open").find('a[role="menuitem"]').each(g)}).each(g);a('a[role="menuitem"]',b).bind("keydown.adminmenu",function(l){if(l.which!=27){return}var k=a(l.target);l.stopPropagation();l.preventDefault();k.add(k.siblings()).closest(".sub-open").removeClass("sub-open").siblings("a.wp-not-current-submenu").focus()});a("div.wrap h2:first").nextAll("div.updated, div.error").addClass("below-h2");a("div.updated, div.error").not(".below-h2, .inline").insertAfter(a("div.wrap h2:first"));screenMeta.init();a("tbody").children().children(".check-column").find(":checkbox").click(function(k){if("undefined"==k.shiftKey){return true}if(k.shiftKey){if(!i){return true}c=a(i).closest("form").find(":checkbox");e=c.index(i);j=c.index(this);h=a(this).prop("checked");if(0<e&&0<j&&e!=j){c.slice(e,j).prop("checked",function(){if(a(this).closest("tr").is(":visible")){return h}return false})}}i=this;return true});a("thead, tfoot").find(".check-column :checkbox").click(function(m){var n=a(this).prop("checked"),l="undefined"==typeof toggleWithKeyboard?false:toggleWithKeyboard,k=m.shiftKey||l;a(this).closest("table").children("tbody").filter(":visible").children().children(".check-column").find(":checkbox").prop("checked",function(){if(a(this).closest("tr").is(":hidden")){return false}if(k){return a(this).prop("checked")}else{if(n){return true}}return false});a(this).closest("table").children("thead, tfoot").filter(":visible").children().children(".check-column").find(":checkbox").prop("checked",function(){if(k){return false}else{if(n){return true}}return false})});a("#default-password-nag-no").click(function(){setUserSetting("default_password_nag","hide");a("div.default-password-nag").hide();return false});a("#newcontent").bind("keydown.wpevent_InsertTab",function(p){if(p.keyCode!=9){return true}var m=p.target,r=m.selectionStart,l=m.selectionEnd,q=m.value,k,o;try{this.lastKey=9}catch(n){}if(document.selection){m.focus();o=document.selection.createRange();o.text="\t"}else{if(r>=0){k=this.scrollTop;m.value=q.substring(0,r).concat("\t",q.substring(l));m.selectionStart=m.selectionEnd=r+1;this.scrollTop=k}}if(p.stopPropagation){p.stopPropagation()}if(p.preventDefault){p.preventDefault()}});a("#newcontent").bind("blur.wpevent_InsertTab",function(k){if(this.lastKey&&9==this.lastKey){this.focus()}});if(d.length){d.closest("form").submit(function(k){if(a('select[name="action"]').val()==-1&&a('select[name="action2"]').val()==-1&&d.val()==f){d.val("1")}})}});a(document).bind("wp_CloseOnEscape",function(c,b){if(typeof(b.cb)!="function"){return}if(typeof(b.condition)!="function"||b.condition()){b.cb()}return true})})(jQuery); \ No newline at end of file diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-admin/js/customize-controls.dev.js ./wordpress-3.4.1/wp-admin/js/customize-controls.dev.js *** ./wordpress-3.4/wp-admin/js/customize-controls.dev.js 2012-06-12 17:51:55.000000000 -0500 --- ./wordpress-3.4.1/wp-admin/js/customize-controls.dev.js 2012-06-26 13:53:45.000000000 -0500 *************** *** 294,300 **** // This is the promise object. deferred.promise( this ); ! this.previewer = params.previewer; $.extend( params, { channel: api.PreviewFrame.uuid() }); --- 294,301 ---- // This is the promise object. deferred.promise( this ); ! this.container = params.container; ! this.signature = params.signature; $.extend( params, { channel: api.PreviewFrame.uuid() }); *************** *** 338,344 **** this.request.done( function( response ) { var location = self.request.getResponseHeader('Location'), ! signature = 'WP_CUSTOMIZER_SIGNATURE', index; // Check if the location response header differs from the current URL. --- 339,345 ---- this.request.done( function( response ) { var location = self.request.getResponseHeader('Location'), ! signature = self.signature, index; // Check if the location response header differs from the current URL. *************** *** 371,377 **** response = response.slice( 0, index ) + response.slice( index + signature.length ); // Create the iframe and inject the html content. ! self.iframe = $('<iframe />').appendTo( self.previewer.container ); // Bind load event after the iframe has been added to the page; // otherwise it will fire when injected into the DOM. --- 372,378 ---- response = response.slice( 0, index ) + response.slice( index + signature.length ); // Create the iframe and inject the html content. ! self.iframe = $('<iframe />').appendTo( self.container ); // Bind load event after the iframe has been added to the page; // otherwise it will fire when injected into the DOM. *************** *** 416,422 **** reject(); iframe = $('<iframe src="' + self.previewUrl() + '" />').hide(); ! iframe.appendTo( self.previewer.container ); iframe.load( function() { self.triedLogin = true; --- 417,423 ---- reject(); iframe = $('<iframe src="' + self.previewUrl() + '" />').hide(); ! iframe.appendTo( self.container ); iframe.load( function() { self.triedLogin = true; *************** *** 497,502 **** --- 498,504 ---- this.container = api.ensure( params.container ); this.allowedUrls = params.allowedUrls; + this.signature = params.signature; params.url = window.location.href; *************** *** 570,576 **** url: this.url(), previewUrl: this.previewUrl(), query: this.query() || {}, ! previewer: this }); this.loading.done( function() { --- 572,579 ---- url: this.url(), previewUrl: this.previewUrl(), query: this.query() || {}, ! container: this.container, ! signature: this.signature }); this.loading.done( function() { *************** *** 583,588 **** --- 586,593 ---- self.targetWindow( this.targetWindow() ); self.channel( this.channel() ); + + self.send( 'active' ); }); this.send( 'sync', { *************** *** 683,705 **** container: '#customize-preview', form: '#customize-controls', previewUrl: api.settings.url.preview, ! allowedUrls: api.settings.url.allowed }, { query: function() { return { wp_customize: 'on', theme: api.settings.theme.stylesheet, ! customized: JSON.stringify( api.get() ) }; }, - nonce: $('#_wpnonce').val(), - save: function() { var self = this, query = $.extend( this.query(), { action: 'customize_save', ! nonce: this.nonce }), request = $.post( api.settings.url.ajax, query ); --- 688,713 ---- container: '#customize-preview', form: '#customize-controls', previewUrl: api.settings.url.preview, ! allowedUrls: api.settings.url.allowed, ! signature: 'WP_CUSTOMIZER_SIGNATURE' }, { + + nonce: api.settings.nonce, + query: function() { return { wp_customize: 'on', theme: api.settings.theme.stylesheet, ! customized: JSON.stringify( api.get() ), ! nonce: this.nonce.preview }; }, save: function() { var self = this, query = $.extend( this.query(), { action: 'customize_save', ! nonce: this.nonce.save }), request = $.post( api.settings.url.ajax, query ); *************** *** 733,738 **** --- 741,751 ---- } }); + // Refresh the nonces if the preview sends updated nonces over. + previewer.bind( 'nonce', function( nonce ) { + $.extend( this.nonce, nonce ); + }); + $.each( api.settings.settings, function( id, data ) { api.create( id, id, data.value, { transport: data.transport, diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-admin/js/customize-controls.js ./wordpress-3.4.1/wp-admin/js/customize-controls.js *** ./wordpress-3.4/wp-admin/js/customize-controls.js 2012-06-12 17:52:24.000000000 -0500 --- ./wordpress-3.4.1/wp-admin/js/customize-controls.js 2012-06-26 16:51:24.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('<a href="#" class="thumbnail"></a>').data("customizeImageValue",d.url).append('<img src="'+d.url+'" />').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.previewer=g.previewer;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="WP_CUSTOMIZER_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<j.lastIndexOf("</html>")){e.rejectWith(d,["unsigned"]);return}j=j.slice(0,k)+j.slice(k+h.length);d.iframe=c("<iframe />").appendTo(d.previewer.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('<iframe src="'+d.previewUrl()+'" />').hide();h.appendTo(d.previewer.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;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()||{},previewer:this});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())});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('<iframe src="'+b.settings.url.login+'" />').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("<p>"+b.l10n.cheatin+"</p>")}});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},{query:function(){return{wp_customize:"on",theme:b.settings.theme.stylesheet,customized:JSON.stringify(b.get())}},nonce:c("#_wpnonce").val(),save:function(){var i=this,k=c.extend(this.query(),{action:"customize_save",nonce:this.nonce}),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")})}});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.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('<a href="#" class="thumbnail"></a>').data("customizeImageValue",d.url).append('<img src="'+d.url+'" />').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<j.lastIndexOf("</html>")){e.rejectWith(d,["unsigned"]);return}j=j.slice(0,k)+j.slice(k+h.length);d.iframe=c("<iframe />").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('<iframe src="'+d.previewUrl()+'" />').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('<iframe src="'+b.settings.url.login+'" />').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("<p>"+b.l10n.cheatin+"</p>")}});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=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-admin/load-scripts.php ./wordpress-3.4.1/wp-admin/load-scripts.php *** ./wordpress-3.4/wp-admin/load-scripts.php 2012-01-05 14:10:39.000000000 -0600 --- ./wordpress-3.4.1/wp-admin/load-scripts.php 2012-06-26 01:28:59.000000000 -0500 *************** *** 54,59 **** --- 54,64 ---- /** * @ignore */ + function did_action() {} + + /** + * @ignore + */ function do_action_ref_array() {} /** diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-admin/themes.php ./wordpress-3.4.1/wp-admin/themes.php *** ./wordpress-3.4/wp-admin/themes.php 2012-06-12 13:39:16.000000000 -0500 --- ./wordpress-3.4.1/wp-admin/themes.php 2012-06-26 14:10:05.000000000 -0500 *************** *** 20,26 **** $theme = wp_get_theme( $_GET['stylesheet'] ); if ( ! $theme->exists() || ! $theme->is_allowed() ) wp_die( __( 'Cheatin’ uh?' ) ); ! switch_theme($_GET['template'], $_GET['stylesheet']); wp_redirect( admin_url('themes.php?activated=true') ); exit; } elseif ( 'delete' == $_GET['action'] ) { --- 20,26 ---- $theme = wp_get_theme( $_GET['stylesheet'] ); if ( ! $theme->exists() || ! $theme->is_allowed() ) wp_die( __( 'Cheatin’ uh?' ) ); ! switch_theme( $theme->get_template(), $theme->get_stylesheet() ); wp_redirect( admin_url('themes.php?activated=true') ); exit; } elseif ( 'delete' == $_GET['action'] ) { *************** *** 64,69 **** --- 64,71 ---- ) ); } + add_thickbox(); + endif; // switch_themes if ( current_user_can( 'edit_theme_options' ) ) { diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-includes/canonical.php ./wordpress-3.4.1/wp-includes/canonical.php *** ./wordpress-3.4/wp-includes/canonical.php 2012-05-02 12:39:43.000000000 -0500 --- ./wordpress-3.4.1/wp-includes/canonical.php 2012-06-25 15:51:16.000000000 -0500 *************** *** 100,106 **** } if ( ! $redirect_url ) { ! if ( $redirect_url = redirect_guess_404_permalink( $requested_url ) ) { $redirect['query'] = _remove_qs_args_if_not_in_url( $redirect['query'], array( 'page', 'feed', 'p', 'page_id', 'attachment_id', 'pagename', 'name', 'post_type' ), $redirect_url ); } } --- 100,106 ---- } if ( ! $redirect_url ) { ! if ( $redirect_url = redirect_guess_404_permalink() ) { $redirect['query'] = _remove_qs_args_if_not_in_url( $redirect['query'], array( 'page', 'feed', 'p', 'page_id', 'attachment_id', 'pagename', 'name', 'post_type' ), $redirect_url ); } } *************** *** 461,491 **** } /** ! * Attempts to guess the correct URL from the current URL (that produced a 404) or ! * the current query variables. * * @since 2.3.0 * @uses $wpdb * - * @param string $current_url Optional. The URL that has 404'd. * @return bool|string The correct URL if one is found. False on failure. */ ! function redirect_guess_404_permalink( $current_url = '' ) { global $wpdb, $wp_rewrite; - if ( ! empty( $current_url ) ) - $parsed_url = @parse_url( $current_url ); - - // Attempt to redirect bare category slugs if the permalink structure starts - // with the %category% tag. - if ( isset( $parsed_url['path'] ) - && preg_match( '#^[^%]+%category%#', $wp_rewrite->permalink_structure ) - && $cat = get_category_by_path( $parsed_url['path'] ) - ) { - if ( ! is_wp_error( $cat ) ) - return get_term_link( $cat ); - } - if ( get_query_var('name') ) { $where = $wpdb->prepare("post_name LIKE %s", like_escape( get_query_var('name') ) . '%'); --- 461,476 ---- } /** ! * Attempts to guess the correct URL based on query vars * * @since 2.3.0 * @uses $wpdb * * @return bool|string The correct URL if one is found. False on failure. */ ! function redirect_guess_404_permalink() { global $wpdb, $wp_rewrite; if ( get_query_var('name') ) { $where = $wpdb->prepare("post_name LIKE %s", like_escape( get_query_var('name') ) . '%'); diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-includes/capabilities.php ./wordpress-3.4.1/wp-includes/capabilities.php *** ./wordpress-3.4/wp-includes/capabilities.php 2012-06-12 08:50:51.000000000 -0500 --- ./wordpress-3.4.1/wp-includes/capabilities.php 2012-06-27 14:29:16.000000000 -0500 *************** *** 1130,1135 **** --- 1130,1137 ---- // Disallow unfiltered_html for all users, even admins and super admins. 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; diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-includes/class-phpmailer.php ./wordpress-3.4.1/wp-includes/class-phpmailer.php *** ./wordpress-3.4/wp-includes/class-phpmailer.php 2012-05-03 11:41:59.000000000 -0500 --- ./wordpress-3.4.1/wp-includes/class-phpmailer.php 2012-06-25 22:55:40.000000000 -0500 *************** *** 760,772 **** } else { if ($this->SingleTo === true && count($toArr) > 1) { foreach ($toArr as $key => $val) { ! $rt = @mail($val, $this->EncodeHeader($this->SecureHeader($this->Subject)), $body, $header, $params); // implement call back function if it exists $isSent = ($rt == 1) ? 1 : 0; $this->doCallback($isSent, $val, $this->cc, $this->bcc, $this->Subject, $body); } } else { ! $rt = @mail($to, $this->EncodeHeader($this->SecureHeader($this->Subject)), $body, $header, $params); // implement call back function if it exists $isSent = ($rt == 1) ? 1 : 0; $this->doCallback($isSent, $to, $this->cc, $this->bcc, $this->Subject, $body); --- 760,772 ---- } else { if ($this->SingleTo === true && count($toArr) > 1) { foreach ($toArr as $key => $val) { ! $rt = @mail($val, $this->EncodeHeader($this->SecureHeader($this->Subject)), $body, $header); // implement call back function if it exists $isSent = ($rt == 1) ? 1 : 0; $this->doCallback($isSent, $val, $this->cc, $this->bcc, $this->Subject, $body); } } else { ! $rt = @mail($to, $this->EncodeHeader($this->SecureHeader($this->Subject)), $body, $header); // implement call back function if it exists $isSent = ($rt == 1) ? 1 : 0; $this->doCallback($isSent, $to, $this->cc, $this->bcc, $this->Subject, $body); diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-includes/class-wp-customize-manager.php ./wordpress-3.4.1/wp-includes/class-wp-customize-manager.php *** ./wordpress-3.4/wp-includes/class-wp-customize-manager.php 2012-06-12 14:27:41.000000000 -0500 --- ./wordpress-3.4.1/wp-includes/class-wp-customize-manager.php 2012-06-26 13:53:45.000000000 -0500 *************** *** 17,22 **** --- 17,24 ---- protected $sections = array(); protected $controls = array(); + protected $nonce_tick; + protected $customized; private $_post_values; *************** *** 308,313 **** --- 310,317 ---- * @since 3.4.0 */ public function customize_preview_init() { + $this->nonce_tick = check_ajax_referer( 'preview-customize_' . $this->get_stylesheet(), 'nonce' ); + $this->prepare_controls(); wp_enqueue_script( 'customize-preview' ); *************** *** 362,367 **** --- 366,378 ---- 'channel' => esc_js( $_POST['customize_messenger_channel'] ), ); + if ( 2 == $this->nonce_tick ) { + $settings['nonce'] = array( + 'save' => wp_create_nonce( 'save-customize_' . $this->get_stylesheet() ), + 'preview' => wp_create_nonce( 'preview-customize_' . $this->get_stylesheet() ) + ); + } + foreach ( $this->settings as $id => $setting ) { $settings['values'][ $id ] = $setting->js_value(); } *************** *** 468,474 **** if ( ! $this->is_preview() ) die; ! check_ajax_referer( 'customize_controls-' . $this->get_stylesheet(), 'nonce' ); // Do we have to switch themes? if ( ! $this->is_theme_active() ) { --- 479,485 ---- if ( ! $this->is_preview() ) die; ! check_ajax_referer( 'save-customize_' . $this->get_stylesheet(), 'nonce' ); // Do we have to switch themes? if ( ! $this->is_theme_active() ) { diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-includes/class-wp-editor.php ./wordpress-3.4.1/wp-includes/class-wp-editor.php *** ./wordpress-3.4/wp-includes/class-wp-editor.php 2012-04-02 17:26:11.000000000 -0500 --- ./wordpress-3.4.1/wp-includes/class-wp-editor.php 2012-06-25 22:10:49.000000000 -0500 *************** *** 337,343 **** foreach ( $editor_styles as $key => $file ) { if ( $file && file_exists( "$template_dir/$file" ) ) { $mce_css[] = "$template_uri/$file"; - $editor_styles[$key] = ''; } } } --- 337,342 ---- diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-includes/class.wp-scripts.php ./wordpress-3.4.1/wp-includes/class.wp-scripts.php *** ./wordpress-3.4/wp-includes/class.wp-scripts.php 2012-02-27 13:46:52.000000000 -0600 --- ./wordpress-3.4.1/wp-includes/class.wp-scripts.php 2012-06-26 01:28:59.000000000 -0500 *************** *** 31,40 **** var $default_dirs; function __construct() { ! if ( ! function_exists( 'did_action' ) || did_action( 'init' ) ) ! $this->init(); ! else ! add_action( 'init', array( $this, 'init' ), 0 ); } function init() { --- 31,38 ---- var $default_dirs; function __construct() { ! $this->init(); ! add_action( 'init', array( $this, 'init' ), 0 ); } function init() { diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-includes/class-wp-theme.php ./wordpress-3.4.1/wp-includes/class-wp-theme.php *** ./wordpress-3.4/wp-includes/class-wp-theme.php 2012-06-11 12:30:57.000000000 -0500 --- ./wordpress-3.4.1/wp-includes/class-wp-theme.php 2012-06-25 22:07:18.000000000 -0500 *************** *** 930,939 **** $files = (array) $this->get_files( 'php', 1 ); foreach ( $files as $file => $full_path ) { ! $headers = get_file_data( $full_path, array( 'Template Name' => 'Template Name' ) ); ! if ( empty( $headers['Template Name'] ) ) continue; ! $page_templates[ $file ] = $headers['Template Name']; } $this->cache_add( 'page_templates', $page_templates ); --- 930,938 ---- $files = (array) $this->get_files( 'php', 1 ); foreach ( $files as $file => $full_path ) { ! if ( ! preg_match( '|Template Name:(.*)$|mi', file_get_contents( $full_path ), $header ) ) continue; ! $page_templates[ $file ] = _cleanup_header_comment( $header[1] ); } $this->cache_add( 'page_templates', $page_templates ); diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-includes/class-wp-xmlrpc-server.php ./wordpress-3.4.1/wp-includes/class-wp-xmlrpc-server.php *** ./wordpress-3.4/wp-includes/class-wp-xmlrpc-server.php 2012-06-05 11:25:05.000000000 -0500 --- ./wordpress-3.4.1/wp-includes/class-wp-xmlrpc-server.php 2012-06-26 14:04:41.000000000 -0500 *************** *** 1337,1343 **** return new IXR_Error( 404, __( 'Invalid post ID.' ) ); $post_type = get_post_type_object( $post['post_type'] ); ! if ( ! current_user_can( $post_type->cap->edit_posts, $post_id ) ) return new IXR_Error( 401, __( 'Sorry, you cannot edit this post.' ) ); return $this->_prepare_post( $post, $fields ); --- 1337,1343 ---- return new IXR_Error( 404, __( 'Invalid post ID.' ) ); $post_type = get_post_type_object( $post['post_type'] ); ! if ( ! current_user_can( $post_type->cap->edit_post, $post_id ) ) return new IXR_Error( 401, __( 'Sorry, you cannot edit this post.' ) ); return $this->_prepare_post( $post, $fields ); *************** *** 1394,1405 **** $post_type = get_post_type_object( $filter['post_type'] ); if ( ! ( (bool) $post_type ) ) return new IXR_Error( 403, __( 'The post type specified is not valid' ) ); ! if ( ! current_user_can( $post_type->cap->edit_posts ) ) ! return new IXR_Error( 401, __( 'Sorry, you are not allowed to edit posts in this post type' )); ! $query['post_type'] = $filter['post_type']; ! } if ( isset( $filter['post_status'] ) ) $query['post_status'] = $filter['post_status']; --- 1394,1407 ---- $post_type = get_post_type_object( $filter['post_type'] ); if ( ! ( (bool) $post_type ) ) return new IXR_Error( 403, __( 'The post type specified is not valid' ) ); + } else { + $post_type = get_post_type_object( 'post' ); + } ! if ( ! current_user_can( $post_type->cap->edit_posts ) ) ! return new IXR_Error( 401, __( 'Sorry, you are not allowed to edit posts in this post type' )); ! $query['post_type'] = $post_type->name; if ( isset( $filter['post_status'] ) ) $query['post_status'] = $filter['post_status']; *************** *** 1427,1433 **** foreach ( $posts_list as $post ) { $post_type = get_post_type_object( $post['post_type'] ); ! if ( ! current_user_can( $post_type->cap->edit_posts, $post['ID'] ) ) continue; $struct[] = $this->_prepare_post( $post, $fields ); --- 1429,1435 ---- foreach ( $posts_list as $post ) { $post_type = get_post_type_object( $post['post_type'] ); ! if ( ! current_user_can( $post_type->cap->edit_post, $post['ID'] ) ) continue; $struct[] = $this->_prepare_post( $post, $fields ); diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-includes/functions.php ./wordpress-3.4.1/wp-includes/functions.php *** ./wordpress-3.4/wp-includes/functions.php 2012-05-03 11:41:59.000000000 -0500 --- ./wordpress-3.4.1/wp-includes/functions.php 2012-06-26 16:26:42.000000000 -0500 *************** *** 1835,1933 **** /** * Retrieve nonce action "Are you sure" message. * ! * The action is split by verb and noun. The action format is as follows: ! * verb-action_extra. The verb is before the first dash and has the format of ! * letters and no spaces and numbers. The noun is after the dash and before the ! * underscore, if an underscore exists. The noun is also only letters. ! * ! * The filter will be called for any action, which is not defined by WordPress. ! * You may use the filter for your plugin to explain nonce actions to the user, ! * when they get the "Are you sure?" message. The filter is in the format of ! * 'explain_nonce_$verb-$noun' with the $verb replaced by the found verb and the ! * $noun replaced by the found noun. The two parameters that are given to the ! * hook are the localized "Are you sure you want to do this?" message with the ! * extra text (the text after the underscore). * - * @package WordPress - * @subpackage Security * @since 2.0.4 * * @param string $action Nonce action. * @return string Are you sure message. */ function wp_explain_nonce( $action ) { ! if ( $action !== -1 && preg_match( '/([a-z]+)-([a-z]+)(_(.+))?/', $action, $matches ) ) { ! $verb = $matches[1]; ! $noun = $matches[2]; ! ! $trans = array(); ! $trans['update']['attachment'] = array( __( 'Your attempt to edit this attachment: “%s” has failed.' ), 'get_the_title' ); ! ! $trans['add']['category'] = array( __( 'Your attempt to add this category has failed.' ), false ); ! $trans['delete']['category'] = array( __( 'Your attempt to delete this category: “%s” has failed.' ), 'get_cat_name' ); ! $trans['update']['category'] = array( __( 'Your attempt to edit this category: “%s” has failed.' ), 'get_cat_name' ); ! ! $trans['delete']['comment'] = array( __( 'Your attempt to delete this comment: “%s” has failed.' ), 'use_id' ); ! $trans['unapprove']['comment'] = array( __( 'Your attempt to unapprove this comment: “%s” has failed.' ), 'use_id' ); ! $trans['approve']['comment'] = array( __( 'Your attempt to approve this comment: “%s” has failed.' ), 'use_id' ); ! $trans['update']['comment'] = array( __( 'Your attempt to edit this comment: “%s” has failed.' ), 'use_id' ); ! $trans['bulk']['comments'] = array( __( 'Your attempt to bulk modify comments has failed.' ), false ); ! $trans['moderate']['comments'] = array( __( 'Your attempt to moderate comments has failed.' ), false ); ! ! $trans['add']['bookmark'] = array( __( 'Your attempt to add this link has failed.' ), false ); ! $trans['delete']['bookmark'] = array( __( 'Your attempt to delete this link: “%s” has failed.' ), 'use_id' ); ! $trans['update']['bookmark'] = array( __( 'Your attempt to edit this link: “%s” has failed.' ), 'use_id' ); ! $trans['bulk']['bookmarks'] = array( __( 'Your attempt to bulk modify links has failed.' ), false ); ! ! $trans['add']['page'] = array( __( 'Your attempt to add this page has failed.' ), false ); ! $trans['delete']['page'] = array( __( 'Your attempt to delete this page: “%s” has failed.' ), 'get_the_title' ); ! $trans['update']['page'] = array( __( 'Your attempt to edit this page: “%s” has failed.' ), 'get_the_title' ); ! ! $trans['edit']['plugin'] = array( __( 'Your attempt to edit this plugin file: “%s” has failed.' ), 'use_id' ); ! $trans['activate']['plugin'] = array( __( 'Your attempt to activate this plugin: “%s” has failed.' ), 'use_id' ); ! $trans['deactivate']['plugin'] = array( __( 'Your attempt to deactivate this plugin: “%s” has failed.' ), 'use_id' ); ! $trans['upgrade']['plugin'] = array( __( 'Your attempt to update this plugin: “%s” has failed.' ), 'use_id' ); ! ! $trans['add']['post'] = array( __( 'Your attempt to add this post has failed.' ), false ); ! $trans['delete']['post'] = array( __( 'Your attempt to delete this post: “%s” has failed.' ), 'get_the_title' ); ! $trans['update']['post'] = array( __( 'Your attempt to edit this post: “%s” has failed.' ), 'get_the_title' ); ! ! $trans['add']['user'] = array( __( 'Your attempt to add this user has failed.' ), false ); ! $trans['delete']['users'] = array( __( 'Your attempt to delete users has failed.' ), false ); ! $trans['bulk']['users'] = array( __( 'Your attempt to bulk modify users has failed.' ), false ); ! $trans['update']['user'] = array( __( 'Your attempt to edit this user: “%s” has failed.' ), 'get_the_author_meta', 'display_name' ); ! $trans['update']['profile'] = array( __( 'Your attempt to modify the profile for: “%s” has failed.' ), 'get_the_author_meta', 'display_name' ); ! ! $trans['update']['options'] = array( __( 'Your attempt to edit your settings has failed.' ), false ); ! $trans['update']['permalink'] = array( __( 'Your attempt to change your permalink structure to: %s has failed.' ), 'use_id' ); ! $trans['edit']['file'] = array( __( 'Your attempt to edit this file: “%s” has failed.' ), 'use_id' ); ! $trans['edit']['theme'] = array( __( 'Your attempt to edit this theme file: “%s” has failed.' ), 'use_id' ); ! $trans['switch']['theme'] = array( __( 'Your attempt to switch to this theme: “%s” has failed.' ), 'use_id' ); ! ! $trans['log']['out'] = array( sprintf( __( 'You are attempting to log out of %s' ), get_bloginfo( 'sitename' ) ), false ); ! ! if ( isset( $trans[$verb][$noun] ) ) { ! if ( !empty( $trans[$verb][$noun][1] ) ) { ! $lookup = $trans[$verb][$noun][1]; ! if ( isset($trans[$verb][$noun][2]) ) ! $lookup_value = $trans[$verb][$noun][2]; ! $object = $matches[4]; ! if ( 'use_id' != $lookup ) { ! if ( isset( $lookup_value ) ) ! $object = call_user_func( $lookup, $lookup_value, $object ); ! else ! $object = call_user_func( $lookup, $object ); ! } ! return sprintf( $trans[$verb][$noun][0], esc_html($object) ); ! } else { ! return $trans[$verb][$noun][0]; ! } ! } ! ! return apply_filters( 'explain_nonce_' . $verb . '-' . $noun, __( 'Are you sure you want to do this?' ), isset($matches[4]) ? $matches[4] : '' ); ! } else { ! return apply_filters( 'explain_nonce_' . $action, __( 'Are you sure you want to do this?' ) ); ! } } /** --- 1835,1853 ---- /** * Retrieve nonce action "Are you sure" message. * ! * Deprecated in 3.4.1 and 3.5.0. Backported to 3.3.3. * * @since 2.0.4 + * @deprecated 3.4.1 + * @deprecated Use wp_nonce_ays() + * @see wp_nonce_ays() * * @param string $action Nonce action. * @return string Are you sure message. */ function wp_explain_nonce( $action ) { ! _deprecated_function( __FUNCTION__, '3.4.1', 'wp_nonce_ays()' ); ! return __( 'Are you sure you want to do this?' ); } /** *************** *** 1944,1954 **** */ function wp_nonce_ays( $action ) { $title = __( 'WordPress Failure Notice' ); ! $html = esc_html( wp_explain_nonce( $action ) ); ! if ( 'log-out' == $action ) ! $html .= "</p><p>" . sprintf( __( "Do you really want to <a href='%s'>log out</a>?"), wp_logout_url() ); ! elseif ( wp_get_referer() ) ! $html .= "</p><p><a href='" . esc_url( remove_query_arg( 'updated', wp_get_referer() ) ) . "'>" . __( 'Please try again.' ) . "</a>"; wp_die( $html, $title, array('response' => 403) ); } --- 1864,1877 ---- */ function wp_nonce_ays( $action ) { $title = __( 'WordPress Failure Notice' ); ! if ( 'log-out' == $action ) { ! $html = sprintf( __( 'You are attempting to log out of %s' ), get_bloginfo( 'name' ) ) . '</p><p>'; ! $html .= sprintf( __( "Do you really want to <a href='%s'>log out</a>?"), wp_logout_url() ); ! } else { ! $html = __( 'Are you sure you want to do this?' ); ! if ( wp_get_referer() ) ! $html .= "</p><p><a href='" . esc_url( remove_query_arg( 'updated', wp_get_referer() ) ) . "'>" . __( 'Please try again.' ) . "</a>"; ! } wp_die( $html, $title, array('response' => 403) ); } *************** *** 3622,3628 **** * @return string|array Either a string containing a reversed comma separated trace or an array of individual calls. */ function wp_debug_backtrace_summary( $ignore_class = null, $skip_frames = 0, $pretty = true ) { ! $trace = debug_backtrace( false ); $caller = array(); $check_class = ! is_null( $ignore_class ); $skip_frames++; // skip this function --- 3545,3555 ---- * @return string|array Either a string containing a reversed comma separated trace or an array of individual calls. */ function wp_debug_backtrace_summary( $ignore_class = null, $skip_frames = 0, $pretty = true ) { ! if ( version_compare( PHP_VERSION, '5.2.5', '>=' ) ) ! $trace = debug_backtrace( false ); ! else ! $trace = debug_backtrace(); ! $caller = array(); $check_class = ! is_null( $ignore_class ); $skip_frames++; // skip this function *************** *** 3690,3696 **** if ( strpos($ua, 'iPhone') !== false || strpos($ua, 'iPad') !== false || strpos($ua, 'iPod') !== false ) { ! return false; } else { return true; } --- 3617,3623 ---- if ( strpos($ua, 'iPhone') !== false || strpos($ua, 'iPad') !== false || strpos($ua, 'iPod') !== false ) { ! return preg_match( '#OS ([\d_]+) like Mac OS X#', $ua, $version ) && version_compare( $version[1], '6', '>=' ); } else { return true; } diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-includes/js/customize-preview.dev.js ./wordpress-3.4.1/wp-includes/js/customize-preview.dev.js *** ./wordpress-3.4/wp-includes/js/customize-preview.dev.js 2012-06-11 16:25:05.000000000 -0500 --- ./wordpress-3.4.1/wp-includes/js/customize-preview.dev.js 2012-06-26 13:53:45.000000000 -0500 *************** *** 88,94 **** preview.trigger( event, args ); }); preview.send( 'synced' ); ! }) preview.send( 'ready' ); --- 88,99 ---- preview.trigger( event, args ); }); preview.send( 'synced' ); ! }); ! ! preview.bind( 'active', function() { ! if ( api.settings.nonce ) ! preview.send( 'nonce', api.settings.nonce ); ! }); preview.send( 'ready' ); diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-includes/js/customize-preview.js ./wordpress-3.4.1/wp-includes/js/customize-preview.js *** ./wordpress-3.4/wp-includes/js/customize-preview.js 2012-06-11 16:28:44.000000000 -0500 --- ./wordpress-3.4.1/wp-includes/js/customize-preview.js 2012-06-26 16:51:24.000000000 -0500 *************** *** 1 **** ! (function(b,d){var c=wp.customize,a;a=function(g,e,f){var h;return function(){var i=arguments;f=f||this;clearTimeout(h);h=setTimeout(function(){h=null;g.apply(f,i)},e)}};c.Preview=c.Messenger.extend({initialize:function(g,f){var e=this;c.Messenger.prototype.initialize.call(this,g,f);this.body=d(document.body);this.body.on("click.preview","a",function(h){h.preventDefault();e.send("scroll",0);e.send("url",d(this).prop("href"))});this.body.on("submit.preview","form",function(h){h.preventDefault()});this.window=d(window);this.window.on("scroll.preview",a(function(){e.send("scroll",e.window.scrollTop())},200));this.bind("scroll",function(h){e.window.scrollTop(h)})}});d(function(){c.settings=window._wpCustomizeSettings;if(!c.settings){return}var f,e;f=new c.Preview({url:window.location.href,channel:c.settings.channel});f.bind("settings",function(g){d.each(g,function(i,h){if(c.has(i)){c(i).set(h)}else{c.create(i,h)}})});f.trigger("settings",c.settings.values);f.bind("setting",function(g){var h;g=g.slice();if(h=c(g.shift())){h.set.apply(h,g)}});f.bind("sync",function(g){d.each(g,function(i,h){f.trigger(i,h)});f.send("synced")});f.send("ready");e=d.map(["color","image","position_x","repeat","attachment"],function(g){return"background_"+g});c.when.apply(c,e).done(function(j,i,m,h,l){var n=d(document.body),o=d("head"),g=d("#custom-background-css"),k;if(n.hasClass("custom-background")&&!g.length){return}k=function(){var p="";n.toggleClass("custom-background",!!(j()||i()));if(j()){p+="background-color: "+j()+";"}if(i()){p+='background-image: url("'+i()+'");';p+="background-position: top "+m()+";";p+="background-repeat: "+h()+";";p+="background-position: top "+l()+";"}g.remove();g=d('<style type="text/css" id="custom-background-css">body.custom-background { '+p+" }</style>").appendTo(o)};d.each(arguments,function(){this.bind(k)})})})})(wp,jQuery); \ No newline at end of file --- 1 ---- ! (function(b,d){var c=wp.customize,a;a=function(g,e,f){var h;return function(){var i=arguments;f=f||this;clearTimeout(h);h=setTimeout(function(){h=null;g.apply(f,i)},e)}};c.Preview=c.Messenger.extend({initialize:function(g,f){var e=this;c.Messenger.prototype.initialize.call(this,g,f);this.body=d(document.body);this.body.on("click.preview","a",function(h){h.preventDefault();e.send("scroll",0);e.send("url",d(this).prop("href"))});this.body.on("submit.preview","form",function(h){h.preventDefault()});this.window=d(window);this.window.on("scroll.preview",a(function(){e.send("scroll",e.window.scrollTop())},200));this.bind("scroll",function(h){e.window.scrollTop(h)})}});d(function(){c.settings=window._wpCustomizeSettings;if(!c.settings){return}var f,e;f=new c.Preview({url:window.location.href,channel:c.settings.channel});f.bind("settings",function(g){d.each(g,function(i,h){if(c.has(i)){c(i).set(h)}else{c.create(i,h)}})});f.trigger("settings",c.settings.values);f.bind("setting",function(g){var h;g=g.slice();if(h=c(g.shift())){h.set.apply(h,g)}});f.bind("sync",function(g){d.each(g,function(i,h){f.trigger(i,h)});f.send("synced")});f.bind("active",function(){if(c.settings.nonce){f.send("nonce",c.settings.nonce)}});f.send("ready");e=d.map(["color","image","position_x","repeat","attachment"],function(g){return"background_"+g});c.when.apply(c,e).done(function(j,i,m,h,l){var n=d(document.body),o=d("head"),g=d("#custom-background-css"),k;if(n.hasClass("custom-background")&&!g.length){return}k=function(){var p="";n.toggleClass("custom-background",!!(j()||i()));if(j()){p+="background-color: "+j()+";"}if(i()){p+='background-image: url("'+i()+'");';p+="background-position: top "+m()+";";p+="background-repeat: "+h()+";";p+="background-position: top "+l()+";"}g.remove();g=d('<style type="text/css" id="custom-background-css">body.custom-background { '+p+" }</style>").appendTo(o)};d.each(arguments,function(){this.bind(k)})})})})(wp,jQuery); \ No newline at end of file diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-includes/l10n.php ./wordpress-3.4.1/wp-includes/l10n.php *** ./wordpress-3.4/wp-includes/l10n.php 2012-05-14 12:58:06.000000000 -0500 --- ./wordpress-3.4.1/wp-includes/l10n.php 2012-06-25 22:09:09.000000000 -0500 *************** *** 392,398 **** return; } ! if ( is_admin() ) load_textdomain( 'default', WP_LANG_DIR . "/admin-$locale.mo" ); if ( is_network_admin() || ( defined( 'WP_INSTALLING_NETWORK' ) && WP_INSTALLING_NETWORK ) ) --- 392,398 ---- return; } ! if ( is_admin() || ( defined( 'WP_REPAIRING' ) && WP_REPAIRING ) ) load_textdomain( 'default', WP_LANG_DIR . "/admin-$locale.mo" ); if ( is_network_admin() || ( defined( 'WP_INSTALLING_NETWORK' ) && WP_INSTALLING_NETWORK ) ) diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-includes/post-template.php ./wordpress-3.4.1/wp-includes/post-template.php *** ./wordpress-3.4/wp-includes/post-template.php 2012-06-11 16:25:05.000000000 -0500 --- ./wordpress-3.4.1/wp-includes/post-template.php 2012-06-25 22:21:37.000000000 -0500 *************** *** 1220,1226 **** $output = '<form action="' . esc_url( site_url( 'wp-login.php?action=postpass', 'login_post' ) ) . '" method="post"> <p>' . __("This post is password protected. To view it please enter your password below:") . '</p> <p><label for="' . $label . '">' . __("Password:") . ' <input name="post_password" id="' . $label . '" type="password" size="20" /></label> <input type="submit" name="Submit" value="' . esc_attr__("Submit") . '" /></p> ! </form> '; return apply_filters('the_password_form', $output); } --- 1220,1226 ---- $output = '<form action="' . esc_url( site_url( 'wp-login.php?action=postpass', 'login_post' ) ) . '" method="post"> <p>' . __("This post is password protected. To view it please enter your password below:") . '</p> <p><label for="' . $label . '">' . __("Password:") . ' <input name="post_password" id="' . $label . '" type="password" size="20" /></label> <input type="submit" name="Submit" value="' . esc_attr__("Submit") . '" /></p> ! </form> '; return apply_filters('the_password_form', $output); } diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-includes/rewrite.php ./wordpress-3.4.1/wp-includes/rewrite.php *** ./wordpress-3.4/wp-includes/rewrite.php 2012-04-25 15:49:57.000000000 -0500 --- ./wordpress-3.4.1/wp-includes/rewrite.php 2012-06-25 15:51:16.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, true, false, 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, false ); $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=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-includes/script-loader.php ./wordpress-3.4.1/wp-includes/script-loader.php *** ./wordpress-3.4/wp-includes/script-loader.php 2012-06-08 14:22:11.000000000 -0500 --- ./wordpress-3.4.1/wp-includes/script-loader.php 2012-06-26 01:28:59.000000000 -0500 *************** *** 62,75 **** $scripts->add( 'utils', "/wp-admin/js/utils$suffix.js" ); $scripts->add( 'common', "/wp-admin/js/common$suffix.js", array('jquery', 'hoverIntent', 'utils'), false, 1 ); ! $scripts->localize( 'common', 'commonL10n', array( 'warnDelete' => __("You are about to permanently delete the selected items.\n 'Cancel' to stop, 'OK' to delete.") ) ); $scripts->add( 'sack', "/wp-includes/js/tw-sack$suffix.js", array(), '1.6.1', 1 ); $scripts->add( 'quicktags', "/wp-includes/js/quicktags$suffix.js", array(), false, 1 ); ! $scripts->localize( 'quicktags', 'quicktagsL10n', array( 'wordLookup' => __('Enter a word to look up:'), 'dictionaryLookup' => esc_attr(__('Dictionary lookup')), 'lookup' => esc_attr(__('lookup')), --- 62,75 ---- $scripts->add( 'utils', "/wp-admin/js/utils$suffix.js" ); $scripts->add( 'common', "/wp-admin/js/common$suffix.js", array('jquery', 'hoverIntent', 'utils'), false, 1 ); ! did_action( 'init' ) && $scripts->localize( 'common', 'commonL10n', array( 'warnDelete' => __("You are about to permanently delete the selected items.\n 'Cancel' to stop, 'OK' to delete.") ) ); $scripts->add( 'sack', "/wp-includes/js/tw-sack$suffix.js", array(), '1.6.1', 1 ); $scripts->add( 'quicktags', "/wp-includes/js/quicktags$suffix.js", array(), false, 1 ); ! did_action( 'init' ) && $scripts->localize( 'quicktags', 'quicktagsL10n', array( 'wordLookup' => __('Enter a word to look up:'), 'dictionaryLookup' => esc_attr(__('Dictionary lookup')), 'lookup' => esc_attr(__('lookup')), *************** *** 93,105 **** $scripts->add( 'prototype', '/wp-includes/js/prototype.js', array(), '1.6.1'); $scripts->add( 'wp-ajax-response', "/wp-includes/js/wp-ajax-response$suffix.js", array('jquery'), false, 1 ); ! $scripts->localize( 'wp-ajax-response', 'wpAjax', array( 'noPerm' => __('You do not have permission to do that.'), 'broken' => __('An unidentified error has occurred.') ) ); $scripts->add( 'wp-pointer', "/wp-includes/js/wp-pointer$suffix.js", array( 'jquery-ui-widget', 'jquery-ui-position' ), '20111129a', 1 ); ! $scripts->localize( 'wp-pointer', 'wpPointerL10n', array( 'dismiss' => __('Dismiss'), ) ); --- 93,105 ---- $scripts->add( 'prototype', '/wp-includes/js/prototype.js', array(), '1.6.1'); $scripts->add( 'wp-ajax-response', "/wp-includes/js/wp-ajax-response$suffix.js", array('jquery'), false, 1 ); ! did_action( 'init' ) && $scripts->localize( 'wp-ajax-response', 'wpAjax', array( 'noPerm' => __('You do not have permission to do that.'), 'broken' => __('An unidentified error has occurred.') ) ); $scripts->add( 'wp-pointer', "/wp-includes/js/wp-pointer$suffix.js", array( 'jquery-ui-widget', 'jquery-ui-position' ), '20111129a', 1 ); ! did_action( 'init' ) && $scripts->localize( 'wp-pointer', 'wpPointerL10n', array( 'dismiss' => __('Dismiss'), ) ); *************** *** 170,176 **** $scripts->add( 'jquery-touch-punch', "/wp-includes/js/jquery/jquery.ui.touch-punch.js", array('jquery-ui-widget', 'jquery-ui-mouse'), '0.2.2', 1 ); $scripts->add( 'thickbox', "/wp-includes/js/thickbox/thickbox.js", array('jquery'), '3.1-20111117', 1 ); ! $scripts->localize( 'thickbox', 'thickboxL10n', array( 'next' => __('Next >'), 'prev' => __('< Prev'), 'image' => __('Image'), --- 170,176 ---- $scripts->add( 'jquery-touch-punch', "/wp-includes/js/jquery/jquery.ui.touch-punch.js", array('jquery-ui-widget', 'jquery-ui-mouse'), '0.2.2', 1 ); $scripts->add( 'thickbox', "/wp-includes/js/thickbox/thickbox.js", array('jquery'), '3.1-20111117', 1 ); ! did_action( 'init' ) && $scripts->localize( 'thickbox', 'thickboxL10n', array( 'next' => __('Next >'), 'prev' => __('< Prev'), 'image' => __('Image'), *************** *** 227,236 **** $scripts->add( 'plupload-all', false, array('plupload', 'plupload-html5', 'plupload-flash', 'plupload-silverlight', 'plupload-html4'), '1.5.4' ); $scripts->add( 'plupload-handlers', "/wp-includes/js/plupload/handlers$suffix.js", array('plupload-all', 'jquery') ); ! $scripts->localize( 'plupload-handlers', 'pluploadL10n', $uploader_l10n ); $scripts->add( 'wp-plupload', "/wp-includes/js/plupload/wp-plupload$suffix.js", array('plupload-all', 'jquery', 'json2') ); ! $scripts->localize( 'wp-plupload', 'pluploadL10n', $uploader_l10n ); // keep 'swfupload' for back-compat. $scripts->add( 'swfupload', '/wp-includes/js/swfupload/swfupload.js', array(), '2201-20110113'); --- 227,236 ---- $scripts->add( 'plupload-all', false, array('plupload', 'plupload-html5', 'plupload-flash', 'plupload-silverlight', 'plupload-html4'), '1.5.4' ); $scripts->add( 'plupload-handlers', "/wp-includes/js/plupload/handlers$suffix.js", array('plupload-all', 'jquery') ); ! did_action( 'init' ) && $scripts->localize( 'plupload-handlers', 'pluploadL10n', $uploader_l10n ); $scripts->add( 'wp-plupload', "/wp-includes/js/plupload/wp-plupload$suffix.js", array('plupload-all', 'jquery', 'json2') ); ! did_action( 'init' ) && $scripts->localize( 'wp-plupload', 'pluploadL10n', $uploader_l10n ); // keep 'swfupload' for back-compat. $scripts->add( 'swfupload', '/wp-includes/js/swfupload/swfupload.js', array(), '2201-20110113'); *************** *** 246,252 **** } $scripts->add( 'swfupload-handlers', "/wp-includes/js/swfupload/handlers$suffix.js", array('swfupload-all', 'jquery'), '2201-20110524'); ! $scripts->localize( 'swfupload-handlers', 'swfuploadL10n', $uploader_l10n ); $scripts->add( 'comment-reply', "/wp-includes/js/comment-reply$suffix.js" ); --- 246,252 ---- } $scripts->add( 'swfupload-handlers', "/wp-includes/js/swfupload/handlers$suffix.js", array('swfupload-all', 'jquery'), '2201-20110524'); ! did_action( 'init' ) && $scripts->localize( 'swfupload-handlers', 'swfuploadL10n', $uploader_l10n ); $scripts->add( 'comment-reply', "/wp-includes/js/comment-reply$suffix.js" ); *************** *** 255,261 **** $scripts->add( 'imgareaselect', "/wp-includes/js/imgareaselect/jquery.imgareaselect$suffix.js", array('jquery'), '0.9.8', 1 ); $scripts->add( 'password-strength-meter', "/wp-admin/js/password-strength-meter$suffix.js", array('jquery'), false, 1 ); ! $scripts->localize( 'password-strength-meter', 'pwsL10n', array( 'empty' => __('Strength indicator'), 'short' => __('Very weak'), 'bad' => __('Weak'), --- 255,261 ---- $scripts->add( 'imgareaselect', "/wp-includes/js/imgareaselect/jquery.imgareaselect$suffix.js", array('jquery'), '0.9.8', 1 ); $scripts->add( 'password-strength-meter', "/wp-admin/js/password-strength-meter$suffix.js", array('jquery'), false, 1 ); ! did_action( 'init' ) && $scripts->localize( 'password-strength-meter', 'pwsL10n', array( 'empty' => __('Strength indicator'), 'short' => __('Very weak'), 'bad' => __('Weak'), *************** *** 272,278 **** $scripts->add( 'admin-bar', "/wp-includes/js/admin-bar$suffix.js", array(), false, 1 ); $scripts->add( 'wplink', "/wp-includes/js/wplink$suffix.js", array( 'jquery', 'wpdialogs' ), false, 1 ); ! $scripts->localize( 'wplink', 'wpLinkL10n', array( 'title' => __('Insert/edit link'), 'update' => __('Update'), 'save' => __('Add Link'), --- 272,278 ---- $scripts->add( 'admin-bar', "/wp-includes/js/admin-bar$suffix.js", array(), false, 1 ); $scripts->add( 'wplink', "/wp-includes/js/wplink$suffix.js", array( 'jquery', 'wpdialogs' ), false, 1 ); ! did_action( 'init' ) && $scripts->localize( 'wplink', 'wpLinkL10n', array( 'title' => __('Insert/edit link'), 'update' => __('Update'), 'save' => __('Add Link'), *************** *** 285,291 **** $scripts->add( 'wpdialogs-popup', "/wp-includes/js/tinymce/plugins/wpdialogs/js/popup$suffix.js", array( 'wpdialogs' ), false, 1 ); $scripts->add( 'word-count', "/wp-admin/js/word-count$suffix.js", array( 'jquery' ), false, 1 ); ! $scripts->localize( 'word-count', 'wordCountL10n', array( /* translators: If your word count is based on single characters (East Asian characters), enter 'characters'. Otherwise, enter 'words'. Do not translate into your own language. */ 'type' => 'characters' == _x( 'words', 'word count: words or characters?' ) ? 'c' : 'w', --- 285,291 ---- $scripts->add( 'wpdialogs-popup', "/wp-includes/js/tinymce/plugins/wpdialogs/js/popup$suffix.js", array( 'wpdialogs' ), false, 1 ); $scripts->add( 'word-count', "/wp-admin/js/word-count$suffix.js", array( 'jquery' ), false, 1 ); ! did_action( 'init' ) && $scripts->localize( 'word-count', 'wordCountL10n', array( /* translators: If your word count is based on single characters (East Asian characters), enter 'characters'. Otherwise, enter 'words'. Do not translate into your own language. */ 'type' => 'characters' == _x( 'words', 'word count: words or characters?' ) ? 'c' : 'w', *************** *** 299,305 **** $scripts->add( 'customize-loader', "/wp-includes/js/customize-loader$suffix.js", array( 'customize-base' ), false, 1 ); $scripts->add( 'customize-preview', "/wp-includes/js/customize-preview$suffix.js", array( 'customize-base' ), false, 1 ); $scripts->add( 'customize-controls', "/wp-admin/js/customize-controls$suffix.js", array( 'customize-base' ), false, 1 ); ! $scripts->localize( 'customize-controls', '_wpCustomizeControlsL10n', array( 'activate' => __( 'Save & Activate' ), 'save' => __( 'Save & Publish' ), 'saved' => __( 'Saved' ), --- 299,305 ---- $scripts->add( 'customize-loader', "/wp-includes/js/customize-loader$suffix.js", array( 'customize-base' ), false, 1 ); $scripts->add( 'customize-preview', "/wp-includes/js/customize-preview$suffix.js", array( 'customize-base' ), false, 1 ); $scripts->add( 'customize-controls', "/wp-admin/js/customize-controls$suffix.js", array( 'customize-base' ), false, 1 ); ! did_action( 'init' ) && $scripts->localize( 'customize-controls', '_wpCustomizeControlsL10n', array( 'activate' => __( 'Save & Activate' ), 'save' => __( 'Save & Publish' ), 'saved' => __( 'Saved' ), *************** *** 311,317 **** if ( is_admin() ) { $scripts->add( 'ajaxcat', "/wp-admin/js/cat$suffix.js", array( 'wp-lists' ) ); $scripts->add_data( 'ajaxcat', 'group', 1 ); ! $scripts->localize( 'ajaxcat', 'catL10n', array( 'add' => esc_attr(__('Add')), 'how' => __('Separate multiple categories with commas.') ) ); --- 311,317 ---- if ( is_admin() ) { $scripts->add( 'ajaxcat', "/wp-admin/js/cat$suffix.js", array( 'wp-lists' ) ); $scripts->add_data( 'ajaxcat', 'group', 1 ); ! did_action( 'init' ) && $scripts->localize( 'ajaxcat', 'catL10n', array( 'add' => esc_attr(__('Add')), 'how' => __('Separate multiple categories with commas.') ) ); *************** *** 319,325 **** $scripts->add( 'admin-categories', "/wp-admin/js/categories$suffix.js", array('wp-lists'), false, 1 ); $scripts->add( 'admin-tags', "/wp-admin/js/tags$suffix.js", array('jquery', 'wp-ajax-response'), false, 1 ); ! $scripts->localize( 'admin-tags', 'tagsl10n', array( 'noPerm' => __('You do not have permission to do that.'), 'broken' => __('An unidentified error has occurred.') )); --- 319,325 ---- $scripts->add( 'admin-categories', "/wp-admin/js/categories$suffix.js", array('wp-lists'), false, 1 ); $scripts->add( 'admin-tags', "/wp-admin/js/tags$suffix.js", array('jquery', 'wp-ajax-response'), false, 1 ); ! did_action( 'init' ) && $scripts->localize( 'admin-tags', 'tagsl10n', array( 'noPerm' => __('You do not have permission to do that.'), 'broken' => __('An unidentified error has occurred.') )); *************** *** 327,333 **** $scripts->add( 'admin-custom-fields', "/wp-admin/js/custom-fields$suffix.js", array('wp-lists'), false, 1 ); $scripts->add( 'admin-comments', "/wp-admin/js/edit-comments$suffix.js", array('wp-lists', 'quicktags', 'jquery-query'), false, 1 ); ! $scripts->localize( 'admin-comments', 'adminCommentsL10n', array( 'hotkeys_highlight_first' => isset($_GET['hotkeys_highlight_first']), 'hotkeys_highlight_last' => isset($_GET['hotkeys_highlight_last']), 'replyApprove' => __( 'Approve and Reply' ), --- 327,333 ---- $scripts->add( 'admin-custom-fields', "/wp-admin/js/custom-fields$suffix.js", array('wp-lists'), false, 1 ); $scripts->add( 'admin-comments', "/wp-admin/js/edit-comments$suffix.js", array('wp-lists', 'quicktags', 'jquery-query'), false, 1 ); ! did_action( 'init' ) && $scripts->localize( 'admin-comments', 'adminCommentsL10n', array( 'hotkeys_highlight_first' => isset($_GET['hotkeys_highlight_first']), 'hotkeys_highlight_last' => isset($_GET['hotkeys_highlight_last']), 'replyApprove' => __( 'Approve and Reply' ), *************** *** 339,345 **** $scripts->add( 'postbox', "/wp-admin/js/postbox$suffix.js", array('jquery-ui-sortable'), false, 1 ); $scripts->add( 'post', "/wp-admin/js/post$suffix.js", array('suggest', 'wp-lists', 'postbox'), false, 1 ); ! $scripts->localize( 'post', 'postL10n', array( 'ok' => __('OK'), 'cancel' => __('Cancel'), 'publishOn' => __('Publish on:'), --- 339,345 ---- $scripts->add( 'postbox', "/wp-admin/js/postbox$suffix.js", array('jquery-ui-sortable'), false, 1 ); $scripts->add( 'post', "/wp-admin/js/post$suffix.js", array('suggest', 'wp-lists', 'postbox'), false, 1 ); ! did_action( 'init' ) && $scripts->localize( 'post', 'postL10n', array( 'ok' => __('OK'), 'cancel' => __('Cancel'), 'publishOn' => __('Publish on:'), *************** *** 365,371 **** $scripts->add( 'comment', "/wp-admin/js/comment$suffix.js", array('jquery') ); $scripts->add_data( 'comment', 'group', 1 ); ! $scripts->localize( 'comment', 'commentL10n', array( 'submittedOn' => __('Submitted on:') ) ); --- 365,371 ---- $scripts->add( 'comment', "/wp-admin/js/comment$suffix.js", array('jquery') ); $scripts->add_data( 'comment', 'group', 1 ); ! did_action( 'init' ) && $scripts->localize( 'comment', 'commentL10n', array( 'submittedOn' => __('Submitted on:') ) ); *************** *** 379,385 **** $scripts->add( 'theme-preview', "/wp-admin/js/theme-preview$suffix.js", array( 'thickbox', 'jquery' ), false, 1 ); $scripts->add( 'inline-edit-post', "/wp-admin/js/inline-edit-post$suffix.js", array( 'jquery', 'suggest' ), false, 1 ); ! $scripts->localize( 'inline-edit-post', 'inlineEditL10n', array( 'error' => __('Error while saving the changes.'), 'ntdeltitle' => __('Remove From Bulk Edit'), 'notitle' => __('(no title)'), --- 379,385 ---- $scripts->add( 'theme-preview', "/wp-admin/js/theme-preview$suffix.js", array( 'thickbox', 'jquery' ), false, 1 ); $scripts->add( 'inline-edit-post', "/wp-admin/js/inline-edit-post$suffix.js", array( 'jquery', 'suggest' ), false, 1 ); ! did_action( 'init' ) && $scripts->localize( 'inline-edit-post', 'inlineEditL10n', array( 'error' => __('Error while saving the changes.'), 'ntdeltitle' => __('Remove From Bulk Edit'), 'notitle' => __('(no title)'), *************** *** 387,398 **** ) ); $scripts->add( 'inline-edit-tax', "/wp-admin/js/inline-edit-tax$suffix.js", array( 'jquery' ), false, 1 ); ! $scripts->localize( 'inline-edit-tax', 'inlineEditL10n', array( 'error' => __('Error while saving the changes.') ) ); $scripts->add( 'plugin-install', "/wp-admin/js/plugin-install$suffix.js", array( 'jquery', 'thickbox' ), false, 1 ); ! $scripts->localize( 'plugin-install', 'plugininstallL10n', array( 'plugin_information' => __('Plugin Information:'), 'ays' => __('Are you sure you want to install this plugin?') ) ); --- 387,398 ---- ) ); $scripts->add( 'inline-edit-tax', "/wp-admin/js/inline-edit-tax$suffix.js", array( 'jquery' ), false, 1 ); ! did_action( 'init' ) && $scripts->localize( 'inline-edit-tax', 'inlineEditL10n', array( 'error' => __('Error while saving the changes.') ) ); $scripts->add( 'plugin-install', "/wp-admin/js/plugin-install$suffix.js", array( 'jquery', 'thickbox' ), false, 1 ); ! did_action( 'init' ) && $scripts->localize( 'plugin-install', 'plugininstallL10n', array( 'plugin_information' => __('Plugin Information:'), 'ays' => __('Are you sure you want to install this plugin?') ) ); *************** *** 406,417 **** $scripts->add( 'media', "/wp-admin/js/media$suffix.js", array( 'jquery-ui-draggable' ), false, 1 ); $scripts->add( 'image-edit', "/wp-admin/js/image-edit$suffix.js", array('jquery', 'json2', 'imgareaselect'), false, 1 ); ! $scripts->localize( 'image-edit', 'imageEditL10n', array( 'error' => __( 'Could not load the preview image. Please reload the page and try again.' ) )); $scripts->add( 'set-post-thumbnail', "/wp-admin/js/set-post-thumbnail$suffix.js", array( 'jquery' ), false, 1 ); ! $scripts->localize( 'set-post-thumbnail', 'setPostThumbnailL10n', array( 'setThumbnail' => __( 'Use as featured image' ), 'saving' => __( 'Saving...' ), 'error' => __( 'Could not set that as the thumbnail image. Try a different attachment.' ), --- 406,417 ---- $scripts->add( 'media', "/wp-admin/js/media$suffix.js", array( 'jquery-ui-draggable' ), false, 1 ); $scripts->add( 'image-edit', "/wp-admin/js/image-edit$suffix.js", array('jquery', 'json2', 'imgareaselect'), false, 1 ); ! did_action( 'init' ) && $scripts->localize( 'image-edit', 'imageEditL10n', array( 'error' => __( 'Could not load the preview image. Please reload the page and try again.' ) )); $scripts->add( 'set-post-thumbnail', "/wp-admin/js/set-post-thumbnail$suffix.js", array( 'jquery' ), false, 1 ); ! did_action( 'init' ) && $scripts->localize( 'set-post-thumbnail', 'setPostThumbnailL10n', array( 'setThumbnail' => __( 'Use as featured image' ), 'saving' => __( 'Saving...' ), 'error' => __( 'Could not set that as the thumbnail image. Try a different attachment.' ), *************** *** 420,426 **** // Navigation Menus $scripts->add( 'nav-menu', "/wp-admin/js/nav-menu$suffix.js", array('jquery-ui-sortable') ); ! $scripts->localize( 'nav-menu', 'navMenuL10n', array( 'noResultsFound' => _x('No results found.', 'search results'), 'warnDeleteMenu' => __( "You are about to permanently delete this menu. \n 'Cancel' to stop, 'OK' to delete." ), 'saveAlert' => __('The changes you made will be lost if you navigate away from this page.') --- 420,426 ---- // Navigation Menus $scripts->add( 'nav-menu', "/wp-admin/js/nav-menu$suffix.js", array('jquery-ui-sortable') ); ! did_action( 'init' ) && $scripts->localize( 'nav-menu', 'navMenuL10n', array( 'noResultsFound' => _x('No results found.', 'search results'), 'warnDeleteMenu' => __( "You are about to permanently delete this menu. \n 'Cancel' to stop, 'OK' to delete." ), 'saveAlert' => __('The changes you made will be lost if you navigate away from this page.') diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-includes/theme.php ./wordpress-3.4.1/wp-includes/theme.php *** ./wordpress-3.4/wp-includes/theme.php 2012-06-12 10:57:11.000000000 -0500 --- ./wordpress-3.4.1/wp-includes/theme.php 2012-06-25 22:36:44.000000000 -0500 *************** *** 381,387 **** if ( ! $sub_dirs ) return false; foreach ( $sub_dirs as $sub_dir ) { ! if ( ! is_dir( $theme_root . '/' . $dir ) || $dir[0] == '.' || $dir == 'CVS' ) continue; if ( ! file_exists( $theme_root . '/' . $dir . '/' . $sub_dir . '/style.css' ) ) continue; --- 381,387 ---- if ( ! $sub_dirs ) return false; foreach ( $sub_dirs as $sub_dir ) { ! if ( ! is_dir( $theme_root . '/' . $dir . '/' . $sub_dir ) || $dir[0] == '.' || $dir == 'CVS' ) continue; if ( ! file_exists( $theme_root . '/' . $dir . '/' . $sub_dir . '/style.css' ) ) continue; diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-includes/update.php ./wordpress-3.4.1/wp-includes/update.php *** ./wordpress-3.4/wp-includes/update.php 2012-03-24 09:07:12.000000000 -0500 --- ./wordpress-3.4.1/wp-includes/update.php 2012-06-25 22:08:30.000000000 -0500 *************** *** 58,63 **** --- 58,64 ---- $multisite_enabled = 1; } else { $user_count = count_users( ); + $user_count = $user_count['total_users']; $multisite_enabled = 0; $num_blogs = 1; $wp_install = home_url( '/' ); *************** *** 70,76 **** 'mysql' => $mysql_version, 'local_package' => isset( $wp_local_package ) ? $wp_local_package : '', 'blogs' => $num_blogs, ! 'users' => $user_count['total_users'], 'multisite_enabled' => $multisite_enabled ); --- 71,77 ---- 'mysql' => $mysql_version, 'local_package' => isset( $wp_local_package ) ? $wp_local_package : '', 'blogs' => $num_blogs, ! 'users' => $user_count, 'multisite_enabled' => $multisite_enabled ); diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-includes/version.php ./wordpress-3.4.1/wp-includes/version.php *** ./wordpress-3.4/wp-includes/version.php 2012-06-13 13:08:29.000000000 -0500 --- ./wordpress-3.4.1/wp-includes/version.php 2012-06-27 14:29:16.000000000 -0500 *************** *** 4,17 **** * * @global string $wp_version */ ! $wp_version = '3.4'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * * @global int $wp_db_version */ ! $wp_db_version = 20596; /** * Holds the TinyMCE version --- 4,17 ---- * * @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 diff -crBPN --exclude=.wp-config.php.swp --exclude=wp-config.php --exclude=wordpress.sql --exclude=wp-config.php --exclude=wordpress.sql --exclude=editor_plugin.js --exclude=jetpack --exclude=.files.list --exclude=wordpress-3.4.1.pl ./wordpress-3.4/wp-login.php ./wordpress-3.4.1/wp-login.php *** ./wordpress-3.4/wp-login.php 2012-06-08 14:22:11.000000000 -0500 --- ./wordpress-3.4.1/wp-login.php 2012-06-26 13:53:45.000000000 -0500 *************** *** 39,45 **** * @param WP_Error $wp_error Optional. WordPress Error Object */ function login_header($title = 'Log In', $message = '', $wp_error = '') { ! global $error, $interim_login, $current_site, $customize_login; // Don't index any of these forms add_action( 'login_head', 'wp_no_robots' ); --- 39,45 ---- * @param WP_Error $wp_error Optional. WordPress Error Object */ function login_header($title = 'Log In', $message = '', $wp_error = '') { ! global $error, $interim_login, $current_site; // Don't index any of these forms add_action( 'login_head', 'wp_no_robots' ); *************** *** 68,76 **** <meta name="viewport" content="width=320; initial-scale=0.9; maximum-scale=1.0; user-scalable=0;" /><?php } - if ( $customize_login ) - wp_enqueue_script( 'customize-base' ); - do_action( 'login_enqueue_scripts' ); do_action( 'login_head' ); --- 68,73 ---- *************** *** 568,573 **** --- 565,572 ---- $secure_cookie = ''; $interim_login = isset($_REQUEST['interim-login']); $customize_login = isset( $_REQUEST['customize-login'] ); + if ( $customize_login ) + wp_enqueue_script( 'customize-base' ); // If the user wants ssl but the session is not ssl, force a secure cookie. if ( !empty($_POST['log']) && !force_ssl_admin() ) { *************** *** 604,624 **** if ( !is_wp_error($user) && !$reauth ) { if ( $interim_login ) { $message = '<p class="message">' . __('You have logged in successfully.') . '</p>'; ! login_header( '', $message ); ! ! if ( ! $customize_login ) : ?> ! <script type="text/javascript">setTimeout( function(){window.close()}, 8000);</script> ! <p class="alignright"> ! <input type="button" class="button-primary" value="<?php esc_attr_e('Close'); ?>" onclick="window.close()" /></p> ! <?php endif; ! ! ?></div><?php ! ! do_action('login_footer'); ! if ( $customize_login ) : ?> <script type="text/javascript">setTimeout( function(){ new wp.customize.Messenger({ url: '<?php echo wp_customize_url(); ?>', channel: 'login' }).send('login') }, 1000 );</script> ! <?php endif; ?> </body></html> <?php exit; } --- 603,620 ---- if ( !is_wp_error($user) && !$reauth ) { if ( $interim_login ) { $message = '<p class="message">' . __('You have logged in successfully.') . '</p>'; ! login_header( '', $message ); ?> ! <?php if ( ! $customize_login ) : ?> ! <script type="text/javascript">setTimeout( function(){window.close()}, 8000);</script> ! <p class="alignright"> ! <input type="button" class="button-primary" value="<?php esc_attr_e('Close'); ?>" onclick="window.close()" /></p> ! <?php endif; ?> ! </div> ! <?php do_action( 'login_footer' ); ?> ! <?php if ( $customize_login ) : ?> <script type="text/javascript">setTimeout( function(){ new wp.customize.Messenger({ url: '<?php echo wp_customize_url(); ?>', channel: 'login' }).send('login') }, 1000 );</script> ! <?php endif; ?> </body></html> <?php exit; }
Save
Cancel