forked from OpenMage/magento-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f91b42
commit 4cf6b33
Showing
6 changed files
with
51 additions
and
48 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,7 +82,7 @@ final class Mage { | |
|
||
public static function getVersion() | ||
{ | ||
return '1.2.1.1'; | ||
return '1.2.1.2'; | ||
} | ||
|
||
/** | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
<?php | ||
/** | ||
* Magento | ||
* | ||
* NOTICE OF LICENSE | ||
* | ||
* This source file is subject to the Academic Free License (AFL 3.0) | ||
* that is bundled with this package in the file LICENSE_AFL.txt. | ||
* It is also available through the world-wide-web at this URL: | ||
* http://opensource.org/licenses/afl-3.0.php | ||
* If you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* | ||
* DISCLAIMER | ||
* | ||
* Do not edit or add to this file if you wish to upgrade Magento to newer | ||
* versions in the future. If you wish to customize Magento for your | ||
* needs please refer to http://www.magentocommerce.com for more information. | ||
* | ||
* @category Varien | ||
* @package Varien_Object | ||
* @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | ||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | ||
*/ | ||
?> | ||
<?php echo $this->template('header.phtml') ?> | ||
<?php if ($returnUrl = $this->controller()->session()->getReturnUrl()): ?> | ||
<a class="f-right" href="<?php echo $returnUrl ?>">Return to Magento Administration</a> | ||
<?php endif ?> | ||
<div style="width:300px; padding:20px; margin:90px auto !important; background:#f6f6f6;"> | ||
<form method="post" action="#"> | ||
<h2 class="page-head">Log In</h2> | ||
<p><small>Please re-enter your Magento Adminstration Credentials.<br/>Only administrators with full permissions will be able to log in.</small></p> | ||
<table class="form-list"> | ||
<tr><td class="label"><label for="username">Username:</label></td><td class="value"><input id="username" name="username" value="<?php echo htmlentities($this->get('username'))?>"/></td></tr> | ||
<tr><td class="label"><label for="password">Password:</label></td><td class="value"><input type="password" id="password" name="password"/></td></tr> | ||
<tr><td></td> | ||
<td class="value"><button type="submit">Log In</button></td></tr> | ||
</table> | ||
</form> | ||
</div> | ||
<?php | ||
/** | ||
* Magento | ||
* | ||
* NOTICE OF LICENSE | ||
* | ||
* This source file is subject to the Academic Free License (AFL 3.0) | ||
* that is bundled with this package in the file LICENSE_AFL.txt. | ||
* It is also available through the world-wide-web at this URL: | ||
* http://opensource.org/licenses/afl-3.0.php | ||
* If you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* | ||
* DISCLAIMER | ||
* | ||
* Do not edit or add to this file if you wish to upgrade Magento to newer | ||
* versions in the future. If you wish to customize Magento for your | ||
* needs please refer to http://www.magentocommerce.com for more information. | ||
* | ||
* @category Varien | ||
* @package Varien_Object | ||
* @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | ||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | ||
*/ | ||
?> | ||
<?php echo $this->template('header.phtml') ?> | ||
<?php if ($returnUrl = $this->controller()->session()->getReturnUrl()): ?> | ||
<a class="f-right" href="<?php echo htmlentities($returnUrl) ?>">Return to Magento Administration</a> | ||
<?php endif ?> | ||
<div style="width:300px; padding:20px; margin:90px auto !important; background:#f6f6f6;"> | ||
<form method="post" action="#"> | ||
<h2 class="page-head">Log In</h2> | ||
<p><small>Please re-enter your Magento Adminstration Credentials.<br/>Only administrators with full permissions will be able to log in.</small></p> | ||
<table class="form-list"> | ||
<tr><td class="label"><label for="username">Username:</label></td><td class="value"><input id="username" name="username" value=""/></td></tr> | ||
<tr><td class="label"><label for="password">Password:</label></td><td class="value"><input type="password" id="password" name="password"/></td></tr> | ||
<tr><td></td> | ||
<td class="value"><button type="submit">Log In</button></td></tr> | ||
</table> | ||
</form> | ||
</div> | ||
<?php echo $this->template('footer.phtml') ?> |