Changeset 462995
- Timestamp:
- 11/15/2011 09:33:37 AM (14 years ago)
- Location:
- cms
- Files:
-
- 49 added
- 2 edited
-
tags/3.0 (added)
-
tags/3.0/.DS_Store (added)
-
tags/3.0/add_adminpanel.php (added)
-
tags/3.0/cms.php (added)
-
tags/3.0/css (added)
-
tags/3.0/css/faq-style.css (added)
-
tags/3.0/css/tinymce_adjustments.css (added)
-
tags/3.0/custom_feed.php (added)
-
tags/3.0/dashboard.php (added)
-
tags/3.0/editing_adjustments.php (added)
-
tags/3.0/faq-actions.php (added)
-
tags/3.0/faq-add-category.php (added)
-
tags/3.0/faq-add-question.php (added)
-
tags/3.0/faq-askquestions-actions.php (added)
-
tags/3.0/faq-askquestions.php (added)
-
tags/3.0/faq-insert-category.php (added)
-
tags/3.0/faq-manage-categories.php (added)
-
tags/3.0/faq-manage-questions.php (added)
-
tags/3.0/faq-options.php (added)
-
tags/3.0/faq.php (added)
-
tags/3.0/hide_updates.php (added)
-
tags/3.0/images (added)
-
tags/3.0/images/Thumbs.db (added)
-
tags/3.0/images/faq-icon.png (added)
-
tags/3.0/images/faq-icon_tinymce.png (added)
-
tags/3.0/images/icon_image.png (added)
-
tags/3.0/images/icon_media.png (added)
-
tags/3.0/images/move-down.png (added)
-
tags/3.0/images/move-down_notover.png (added)
-
tags/3.0/images/move-up.png (added)
-
tags/3.0/images/move-up_notover.png (added)
-
tags/3.0/images/move.png (added)
-
tags/3.0/js (added)
-
tags/3.0/js/faq-add-tinymce.js (added)
-
tags/3.0/js/faq-frontend.js (added)
-
tags/3.0/js/verplaats.js (added)
-
tags/3.0/languages (added)
-
tags/3.0/languages/cms-it_IT.mo (added)
-
tags/3.0/languages/cms-it_IT.po (added)
-
tags/3.0/languages/cms-nl.mo (added)
-
tags/3.0/languages/cms-nl.po (added)
-
tags/3.0/logo.php (added)
-
tags/3.0/menu_adjustments.php (added)
-
tags/3.0/multiple_content.php (added)
-
tags/3.0/other-menu-title.php (added)
-
tags/3.0/page_manager.php (added)
-
tags/3.0/readme.txt (added)
-
tags/3.0/screenshot-1.jpg (added)
-
tags/3.0/tinymce_adjustments.php (added)
-
trunk/multiple_content.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cms/trunk/multiple_content.php
r382787 r462995 60 60 $child_theme_url = str_replace('themes/','',strstr(get_stylesheet_directory_uri(),'themes/')); 61 61 62 if(fopen(str_replace($current_theme_url,$child_theme_url,$fileToRead), 'r')) { //child theme exists 63 $fileToRead = str_replace($current_theme_url,$child_theme_url,$fileToRead); 64 $f = fopen($fileToRead, 'r'); 65 } else { 66 $f = fopen($fileToRead, 'r'); 67 } 68 $contents = fread($f, filesize($fileToRead)); 69 $contents = htmlspecialchars( $contents ); 70 62 if(file_exists(str_replace($current_theme_url,$child_theme_url,$fileToRead))) { 63 if(fopen(str_replace($current_theme_url,$child_theme_url,$fileToRead), 'r')) { //child theme exists 64 $fileToRead = str_replace($current_theme_url,$child_theme_url,$fileToRead); 65 $f = fopen($fileToRead, 'r'); 66 } else { 67 $f = fopen($fileToRead, 'r'); 68 } 69 $contents = fread($f, filesize($fileToRead)); 70 $contents = htmlspecialchars( $contents ); 71 } 72 71 73 //read the templates header, sidebar and footer, added in v1.1 72 74 $headercontents = read_tag('header',$contents); … … 175 177 $child_theme_url = str_replace('themes/','',strstr(get_stylesheet_directory_uri(),'themes/')); 176 178 177 if(fopen(str_replace($current_theme_url,$child_theme_url,$fileToRead), 'r')) { //child theme exists 178 $fileToRead = str_replace($current_theme_url,$child_theme_url,$fileToRead); 179 $f = fopen($fileToRead, 'r'); 180 } else { 181 $f = fopen($fileToRead, 'r'); 182 } 183 $tagContents = fread($f, filesize($fileToRead)); 184 $tagContents = htmlspecialchars( $tagContents ); 179 if(file_exists(str_replace($current_theme_url,$child_theme_url,$fileToRead))) { 180 if(fopen(str_replace($current_theme_url,$child_theme_url,$fileToRead), 'r')) { //child theme exists 181 $fileToRead = str_replace($current_theme_url,$child_theme_url,$fileToRead); 182 $f = fopen($fileToRead, 'r'); 183 } else { 184 $f = fopen($fileToRead, 'r'); 185 } 186 $tagContents = fread($f, filesize($fileToRead)); 187 $tagContents = htmlspecialchars( $tagContents ); 188 } 185 189 186 190 return $tagContents; -
cms/trunk/readme.txt
r382787 r462995 4 4 Tags: cms,content,management,system,website,optimal,multiple,content,block,show,more,pages,page,manager,faq,frequently,asked,questions,you,custom,logo,hide,updates,user,friendly,usability 5 5 Requires at least: 3.0 6 Tested up to: 3. 1.27 Stable tag: 3. 06 Tested up to: 3.2.1 7 Stable tag: 3.1 8 8 9 9 A collection of plugins to make WordPress feel more like a CMS. It has some small adjustments and some bigger ones. Please only download when you have WordPress 3.0. … … 30 30 31 31 == Changelog == 32 33 = 3.1 = 34 * Fixed a bug in MCB 32 35 33 36 = 3.0 =
Note: See TracChangeset
for help on using the changeset viewer.