mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-27 03:12:21 -05:00
Fixed bugs due to migration
This commit is contained in:
parent
693b3f8677
commit
d5ce28df67
@ -561,6 +561,6 @@ class Poche
|
||||
|
||||
function convertURLToBase64($plainurl){
|
||||
$convertedURL = base64_encode($plainurl);
|
||||
$this->action('add', new Url($convertedURL))
|
||||
$this->action('add', new Url($convertedURL));
|
||||
}
|
||||
}
|
@ -3,7 +3,6 @@
|
||||
<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=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 href="./?logout" title="{% trans "logout" %}">{% trans "logout" %}</a></li>
|
||||
</ul>
|
||||
|
@ -259,14 +259,14 @@ footer {
|
||||
}
|
||||
|
||||
#inputform{
|
||||
+ display: none;
|
||||
+ text-align:center;
|
||||
+ max-width:300px;
|
||||
+ margin-left:auto;
|
||||
+ margin-right:auto;
|
||||
+ margin-top:5px;
|
||||
+ background-color: rgba(0, 0, 0, 0.9);
|
||||
+ opacity:0.8;
|
||||
+ color:white;
|
||||
+ border-radius: 3px;
|
||||
+}
|
||||
display: none;
|
||||
text-align:center;
|
||||
max-width:300px;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
margin-top:5px;
|
||||
background-color: rgba(0, 0, 0, 0.9);
|
||||
opacity:0.8;
|
||||
color:white;
|
||||
border-radius: 3px;
|
||||
}
|
Loading…
Reference in New Issue
Block a user