1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-30 04:42:19 -05:00

Fixed bugs due to migration

This commit is contained in:
Thomas Citharel 2013-09-08 21:26:30 +02:00
parent 693b3f8677
commit d5ce28df67
3 changed files with 12 additions and 13 deletions

View File

@ -561,6 +561,6 @@ class Poche
function convertURLToBase64($plainurl){ function convertURLToBase64($plainurl){
$convertedURL = base64_encode($plainurl); $convertedURL = base64_encode($plainurl);
$this->action('add', new Url($convertedURL)) $this->action('add', new Url($convertedURL));
} }
} }

View File

@ -3,7 +3,6 @@
<li><a href="./?view=fav" {% if view == 'fav' %}class="current"{% endif %}>{% trans "favorites" %}</a></li> <li><a href="./?view=fav" {% if view == 'fav' %}class="current"{% endif %}>{% trans "favorites" %}</a></li>
<li><a href="./?view=archive" {% if view == 'archive' %}class="current"{% endif %}>{% trans "archive" %}</a></li> <li><a href="./?view=archive" {% if view == 'archive' %}class="current"{% endif %}>{% trans "archive" %}</a></li>
<li><a href="./?view=config" {% if view == 'config' %}class="current"{% endif %}>{% trans "config" %}</a></li> <li><a href="./?view=config" {% if view == 'config' %}class="current"{% endif %}>{% trans "config" %}</a></li>
<li><a href="./?logout" title="{% trans "logout" %}">{% trans "logout" %}</a></li>
<li><a id="addurlbutton" onclick="showinput();" href="#" title="{% trans "addlink" %}">{% trans "addlink" %}</a></li> <li><a id="addurlbutton" onclick="showinput();" href="#" title="{% trans "addlink" %}">{% trans "addlink" %}</a></li>
<li><a href="./?logout" title="{% trans "logout" %}">{% trans "logout" %}</a></li> <li><a href="./?logout" title="{% trans "logout" %}">{% trans "logout" %}</a></li>
</ul> </ul>

View File

@ -259,14 +259,14 @@ footer {
} }
#inputform{ #inputform{
+ display: none; display: none;
+ text-align:center; text-align:center;
+ max-width:300px; max-width:300px;
+ margin-left:auto; margin-left:auto;
+ margin-right:auto; margin-right:auto;
+ margin-top:5px; margin-top:5px;
+ background-color: rgba(0, 0, 0, 0.9); background-color: rgba(0, 0, 0, 0.9);
+ opacity:0.8; opacity:0.8;
+ color:white; color:white;
+ border-radius: 3px; border-radius: 3px;
+} }