Changes from tags/1.0.2 at r1285 to tags/1.0.3 at r1285
- Files:
-
- tags/1.0.3/src/lib/functions.php (modified) (1 diff)
- tags/1.0.3/src/lyceum/portal.php (modified) (1 diff)
- tags/1.0.3/src/lyceum/wp-includes/version.php (modified) (1 diff)
- tags/1.0.3/src/lyceum/wp-content/themes/default/comments.php (modified) (1 diff)
- tags/1.0.3/src/lyceum/private.php (modified) (1 diff)
- tags/1.0.3/src/lyceum/wp-settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tags/1.0.3/src/lib/functions.php
r1271 r1276 311 311 function slug_from_blog_id($blog_id){ 312 312 global $wpdb; 313 return $wpdb->get_var("SELECT slug FROM blogs WHERE id = '$blog_id'");313 return $wpdb->get_var("SELECT slug FROM $wpdb->blogs WHERE id = '$blog_id'"); 314 314 } 315 315 tags/1.0.3/src/lyceum/portal.php
r1195 r1277 53 53 <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="<?php echo LURL ?>/atom.php" /> 54 54 55 <meta http-equiv="Content-Type" content="text/html; charset= UTF-8" />55 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo get_option('system_charset') ?>" /> 56 56 </head> 57 57 tags/1.0.3/src/lyceum/wp-includes/version.php
r1274 r1281 3 3 // This just holds the version number, in a separate file so we can bump it without cluttering the SVN 4 4 5 $wp_version = '1.0. 2';5 $wp_version = '1.0.3'; 6 6 $wp_db_version = 3; 7 7 tags/1.0.3/src/lyceum/wp-content/themes/default/comments.php
r1060 r1278 77 77 <?php if ( $user_ID ) : ?> 78 78 79 <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="Log out of this account">Logout »</a></p>79 <p>Logged in as <a href="<?php echo LURL; ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo LURL; ?>/wp-login.php?action=logout" title="Log out of this account">Logout »</a></p> 80 80 81 81 <?php else : ?> tags/1.0.3/src/lyceum/private.php
r972 r1279 3 3 // [1] Move /src/lib, /src/config, and /src/installation into /src/lyceum/ 4 4 // [2] comment this out 5 define('PRIVATE_REL_PATH', './'); 6 // [3] uncomment this 5 7 // define('PRIVATE_REL_PATH', '../'); 6 // [3] uncomment this7 define('PRIVATE_REL_PATH', './');8 8 //.........................................................stop editing. 9 9 tags/1.0.3/src/lyceum/wp-settings.php
r1273 r1280 174 174 $blog = 'NULL'; 175 175 176 define('LURL', 'http://'. MAINDOMAIN . WEBROOT);// Lyceum URL176 define('LURL', PROTOCOL . MAINDOMAIN . WEBROOT);// Lyceum URL 177 177 178 178 if (!strstr($_SERVER['PHP_SELF'], 'install.php')) :
