This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Beutified variable/array/object output for debugging | |
* | |
* Intellegently determines the type of data in $input and | |
* prints out a pleaseant rendering of its contents. | |
* | |
* Distinguishes between arrays, objects, strings, integers and booleans | |
* Otherwise states its not sure what $input is. | |
* | |
* $args is an array of optional parameters: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Copyright 2008 Google Inc. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Plugin Name: Google Analyticator | |
* Version: 6.4.2.1.jer | |
* Plugin URI: http://wordpress.org/extend/plugins/google-analyticator/ | |
* Description: Adds the necessary JavaScript code to enable <a href="http://www.google.com/analytics/">Google's Analytics</a>. After enabling this plugin you need to authenticate with Google, then select your domain and you're set. PATCHED_BY_JEREMY_CLARKE: Fixed issue with array-based options (roles to hide, roles to see dashboard widget) being stomped by overzealous kses filtering. | |
* Author: Video User Manuals | |
* Author URI: http://www.videousermanuals.com | |
* Text Domain: google-analyticator | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: custom_metadata.php | |
=================================================================== | |
--- custom_metadata.php (revision 499358) | |
+++ custom_metadata.php (working copy) | |
@@ -871,12 +871,22 @@ | |
else $field_id = $field_slug; | |
$readonly_str = ($field->readonly) ? 'readonly="readonly" ' : ''; | |
+ | |
NewerOlder