Changeset 433355
- Timestamp:
- 09/04/2011 09:06:20 PM (15 years ago)
- Location:
- getmecooking-recipe-template/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (1 diff)
-
recipe-template-functions.php (modified) (1 diff)
-
recipe-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
getmecooking-recipe-template/trunk/readme.txt
r433329 r433355 79 79 80 80 == Changelog == 81 = 1.03 = 82 * Labels were showing when they did not need to 83 81 84 = 1.02 = 82 85 * Fixed a plural bug with pounds and ounces -
getmecooking-recipe-template/trunk/recipe-template-functions.php
r433329 r433355 951 951 952 952 updateOrDeleteMeta($post_ID, "gmc-recopt-region", $region); 953 updateOrDeleteMeta($post_ID, "gmc-recopt-when", serialize($_POST['gmc-recopt-when'])); 954 updateOrDeleteMeta($post_ID, "gmc-recopt-occasion", serialize($_POST['gmc-recopt-occasion'])); 955 updateOrDeleteMeta($post_ID, "gmc-recopt-allergies", serialize($_POST['gmc-recopt-allergies'])); 956 updateOrDeleteMeta($post_ID, "gmc-recopt-dietry", serialize($_POST['gmc-recopt-dietry'])); 957 updateOrDeleteMeta($post_ID, "gmc-recopt-other", serialize($_POST['gmc-recopt-other'])); 953 954 if (!empty($_POST['gmc-recopt-when'])) { 955 update_post_meta($post_ID, "gmc-recopt-when", serialize($_POST['gmc-recopt-when'])); 956 } else { 957 delete_post_meta($post_ID, "gmc-recopt-when"); 958 } 959 960 if (!empty($_POST['gmc-recopt-occasion'])) { 961 update_post_meta($post_ID, "gmc-recopt-occasion", serialize($_POST['gmc-recopt-occasion'])); 962 } else { 963 delete_post_meta($post_ID, "gmc-recopt-occasion"); 964 } 965 966 if (!empty($_POST['gmc-recopt-allergies'])) { 967 update_post_meta($post_ID, "gmc-recopt-allergies", serialize($_POST['gmc-recopt-allergies'])); 968 } else { 969 delete_post_meta($post_ID, "gmc-recopt-allergies"); 970 } 971 972 if (!empty($_POST['gmc-recopt-dietry'])) { 973 update_post_meta($post_ID, "gmc-recopt-dietry", serialize($_POST['gmc-recopt-dietry'])); 974 } else { 975 delete_post_meta($post_ID, "gmc-recopt-dietry"); 976 } 977 978 if (!empty($_POST['gmc-recopt-other'])) { 979 update_post_meta($post_ID, "gmc-recopt-other", serialize($_POST['gmc-recopt-other'])); 980 } else { 981 delete_post_meta($post_ID, "gmc-recopt-other"); 982 } 958 983 959 984 // new step -
getmecooking-recipe-template/trunk/recipe-template.php
r433329 r433355 4 4 Plugin URI: http://www.getmecooking.com/recipe-template 5 5 Description: <strong>For food bloggers - allows you to add recipes to your blog</strong>. Includes recipe title, photographs, list of ingredients, recipe steps and Search Engine Optimisation (SEO). Also your recipes can be added to <a href="http://www.getmecooking.com/">http://www.getmecooking.com</a>, which will give your recipes additional functionality, more exposure and increased traffic. Visit the <a href="http://www.getmecooking.com/recipe-template/">information page</a> for full details. 6 Version: 1.0 26 Version: 1.03 7 7 Author: GetMeCooking 8 8 Author URI: http://www.getmecooking.com/ … … 10 10 11 11 define('GMC_URL', 'http://www.getmecooking.com/recipeservice.svc/submitrecipe'); 12 define('GMC_CSS_VERSION', '1.0 2');13 define('GMC_JS_VERSION', '1.0 2');12 define('GMC_CSS_VERSION', '1.03'); 13 define('GMC_JS_VERSION', '1.03'); 14 14 15 15 include('lib/owt-translate.php');
Note: See TracChangeset
for help on using the changeset viewer.