[wp-cvs]
wordpress/wp-includes template-functions-general.php, 1.46, 1.47
Ryan Boren
rboren at users.sourceforge.net
Sat Sep 11 16:12:43 UTC 2004
- Previous message: [wp-cvs] wordpress/wp-admin theme-editor.php, NONE, 1.1 themes.php,
NONE, 1.1 admin-functions.php, 1.38, 1.39 menu.php, 1.25,
1.26 upgrade-schema.php, 1.4, 1.5
- Next message: [wp-cvs]
wordpress/wp-includes template-functions-general.php, 1.47, 1.48
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/cafelog/wordpress/wp-includes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7289/wp-includes
Modified Files:
template-functions-general.php
Log Message:
Themes.
Index: template-functions-general.php
===================================================================
RCS file: /cvsroot/cafelog/wordpress/wp-includes/template-functions-general.php,v
retrieving revision 1.46
retrieving revision 1.47
diff -C2 -d -r1.46 -r1.47
*** template-functions-general.php 9 Sep 2004 23:07:46 -0000 1.46
--- template-functions-general.php 11 Sep 2004 16:12:40 -0000 1.47
***************
*** 78,81 ****
--- 78,97 ----
$output = get_settings('siteurl') .'/xmlrpc.php';
break;
+ case 'stylesheet_url':
+ $output = get_settings('stylesheet');;
+ if (empty($output) || $output == 'default') {
+ $output = get_settings('home') . "/wp-layout.css";
+ } else {
+ $output = get_settings('home') . "/wp-content/themes/$output/style.css";
+ }
+ break;
+ case 'template_url':
+ $output = get_settings('template');;
+ if (empty($output) || $output == 'default') {
+ $output = get_settings('home');
+ } else {
+ $output = get_settings('home') . "/wp-content/themes/$output";
+ }
+ break;
case 'admin_email':
$output = get_settings('admin_email');
- Previous message: [wp-cvs] wordpress/wp-admin theme-editor.php, NONE, 1.1 themes.php,
NONE, 1.1 admin-functions.php, 1.38, 1.39 menu.php, 1.25,
1.26 upgrade-schema.php, 1.4, 1.5
- Next message: [wp-cvs]
wordpress/wp-includes template-functions-general.php, 1.47, 1.48
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cvs
mailing list