Sfoglia il codice sorgente

Add files via upload

Daniele Bonini (皮夕): WebDev and DevOps by lots of Sim.pli.city bits 2 anni fa
parent
commit
3cc64627e5
4 ha cambiato i file con 53 aggiunte e 53 eliminazioni
  1. 8 8
      README.md
  2. 11 11
      config.inc.sample
  3. 17 17
      index.html
  4. 17 17
      index.php

+ 8 - 8
README.md

@@ -1,18 +1,18 @@
-# Homohug
+# Actitude
 Let everyone register or support you   
 Let everyone register or support you   
 <br>    
 <br>    
      
      
-Hello and welcome to Homohug!
+Hello and welcome to Actitude!
   	   
   	   
-Homohug is a light and simple software on premise to get registrations to events or support.   
+Actitude is a light and simple software on premise to get registrations to events or support.   
   	     
   	     
-Homohug is released under GPLv3 license, it is supplied AS-IS and we do not take any responsibility for its misusage.   
+Actitude is released under GPLv3 license, it is supplied AS-IS and we do not take any responsibility for its misusage.   
   	     
   	     
-Homohug name comes from a prank between two words: "homo" meaning our positive way to do stuff, for the homines, and "hug".   
+Actitude name comes from a prank between two words: "active" meaning our positive way to do stuff and "attitude".   
           
           
 First step, use the left side panel password and salt fields to create the hash to insert in the config file. Remember to manually set there also the salt value.  
 First step, use the left side panel password and salt fields to create the hash to insert in the config file. Remember to manually set there also the salt value.  
    
    
-As you are going to run Homohug in the PHP process context, using a limited web server or phpfpm user, you must follow some simple directives for an optimal first setup:   
+As you are going to run Actitude in the PHP process context, using a limited web server or phpfpm user, you must follow some simple directives for an optimal first setup:   
 <ol>
 <ol>
 <li>Check the permissions of your "data" folder in your web app private path; and set its path in the config file.</li>  
 <li>Check the permissions of your "data" folder in your web app private path; and set its path in the config file.</li>  
 <li>In the data path create a ".ACT_history" and ".ACT_captchahistory" files and give them the write permission.</li>  
 <li>In the data path create a ".ACT_history" and ".ACT_captchahistory" files and give them the write permission.</li>  
@@ -24,8 +24,8 @@ As you are going to run Homohug in the PHP process context, using a limited web
 </ul>  
 </ul>  
 </ol>   
 </ol>   
     
     
-Hope you can enjoy it and let us know about any feedback: <a href="mailto:info@homohug.org" style="color:#e6d236;">info@homohug.org</a>  
+Hope you can enjoy it and let us know about any feedback: <a href="mailto:info@actitu.de" style="color:#e6d236;">info@actitu.de</a>  
    
    
 ## Screenshots  
 ## Screenshots  
 	   
 	   
- ![Homohug](/ACT_res/screenshot1.png)  
+ ![Actitude](/ACT_res/screenshot1.png)  

+ 11 - 11
config.inc.sample

@@ -3,24 +3,24 @@
 /**
 /**
  * Copyright 2021, 2024 5 Mode
  * Copyright 2021, 2024 5 Mode
  *
  *
- * This file is part of Homohug.
+ * This file is part of Actitude.
  *
  *
- * Homohug is free software: you can redistribute it and/or modify
+ * Actitude is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * (at your option) any later version.
  *
  *
- * Homohug is distributed in the hope that it will be useful,
+ * Actitude is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  * GNU General Public License for more details.  
  * GNU General Public License for more details.  
  * 
  * 
  * You should have received a copy of the GNU General Public License
  * You should have received a copy of the GNU General Public License
- * along with Homohug. If not, see <https://www.gnu.org/licenses/>.
+ * along with Actitude. If not, see <https://www.gnu.org/licenses/>.
  *
  *
  * config.inc
  * config.inc
  * 
  * 
- * Homohug configuration settings.
+ * Actitude configuration settings.
  *
  *
  * @author Daniele Bonini <my25mb@aol.com>
  * @author Daniele Bonini <my25mb@aol.com>
  * @copyrights (c) 2021, 2024, 5 Mode     
  * @copyrights (c) 2021, 2024, 5 Mode     
@@ -28,10 +28,10 @@
 
 
 define('DEBUG', true);
 define('DEBUG', true);
  
  
-define('APP_NAME', "Homohug");
+define('APP_NAME', "Actitude");
 
 
-define('APP_TITLE', "Homohug");
-define('APP_DESCRIPTION', "Welcome to Homohug! Let everyone register and support you.");
+define('APP_TITLE', "Actitude");
+define('APP_DESCRIPTION', "Welcome to Actitude! Let everyone register and support you.");
 define('APP_KEYWORDS', "event,registration,support,supportes,hugs,list,on,premise,solution");
 define('APP_KEYWORDS', "event,registration,support,supportes,hugs,list,on,premise,solution");
 
 
 // password: yourpassword
 // password: yourpassword
@@ -71,9 +71,9 @@ $CONFIG = [
    'DEBUG' => true,
    'DEBUG' => true,
 
 
    'APP' => [
    'APP' => [
-      'NAME' => "Homolog",
-      'TITLE' => "Homolog",
-      'DESCRIPTION' => "Welcome to Homolog! Let everyone register and support you.",
+      'NAME' => "Actitude",
+      'TITLE' => "Actitude",
+      'DESCRIPTION' => "Welcome to Actitude! Let everyone register and support you.",
       'KEYWORDS' => "event,registration,support,supportes,hugs,list,on,premise,solution",
       'KEYWORDS' => "event,registration,support,supportes,hugs,list,on,premise,solution",
       'HASH' => "",  
       'HASH' => "",  
       'SPLASH' => true,
       'SPLASH' => true,

+ 17 - 17
index.html

@@ -12,27 +12,27 @@
 <!--
 <!--
     Copyright 2021, 2024 5 Mode
     Copyright 2021, 2024 5 Mode
 
 
-    This file is part of Homohug.
+    This file is part of Actitude.
 
 
-    Homohug is free software: you can redistribute it and/or modify
+    Actitude is free software: you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     it under the terms of the GNU General Public License as published by
     the Free Software Foundation, either version 3 of the License, or
     the Free Software Foundation, either version 3 of the License, or
     (at your option) any later version.
     (at your option) any later version.
 
 
-    Homohug is distributed in the hope that it will be useful,
+    Actitude is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
     GNU General Public License for more details.
     GNU General Public License for more details.
 
 
     You should have received a copy of the GNU General Public License
     You should have received a copy of the GNU General Public License
-    along with Homohug. If not, see <https://www.gnu.org/licenses/>.
+    along with Actitude. If not, see <https://www.gnu.org/licenses/>.
  -->
  -->
      
      
-  <title>Homohug: let everyone register or support you</title>
+  <title>Actitude: let everyone register or support you</title>
 	
 	
   <link rel="shortcut icon" href="/favicon.ico" />
   <link rel="shortcut icon" href="/favicon.ico" />
     
     
-  <meta name="description" content="Welcome to Homohug"/>
+  <meta name="description" content="Welcome to Actitude"/>
   <meta name="author" content="5 Mode"/> 
   <meta name="author" content="5 Mode"/> 
   <meta name="keywords" content="event,registration,support,supportes,hugs,list,on,premise,solution"/>
   <meta name="keywords" content="event,registration,support,supportes,hugs,list,on,premise,solution"/>
   <meta name="robots" content="index,follow"/>
   <meta name="robots" content="index,follow"/>
@@ -76,21 +76,21 @@
 <body>
 <body>
 
 
 <div id="HCsplash" style="padding-top: 160px; text-align:center;color:#ffffff;display:none;">
 <div id="HCsplash" style="padding-top: 160px; text-align:center;color:#ffffff;display:none;">
-   <div id="myh1"><H1>Homohug</H1></div><br>
+   <div id="myh1"><H1>Actitude</H1></div><br>
    <img src="/ACT_res/ACTlogo.png" style="width:310px;">
    <img src="/ACT_res/ACTlogo.png" style="width:310px;">
 </div>
 </div>
 
 
 <form id="frmHC" method="POST" target="_self" enctype="multipart/form-data" style="display:none;">
 <form id="frmHC" method="POST" target="_self" enctype="multipart/form-data" style="display:none;">
 
 
 <div class="header">
 <div class="header">
-   <a id="burger-menu" href="#" style="display:none;"><img src="/ACT_res/burger-menu2.png" style="width:58px;"></a><a id="ahome" href="http://homohug.org" target="_blank" style="color:black; text-decoration: none;"><img id="logo-hmm" src="/ACT_res/ACTlogo.png" style="width:48px;">&nbsp;Homohug</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a id="agithub" href="https://github.com/par7133/Homohug" style="color:#000000"><span style="color:#119fe2">on</span> github</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a id="afeedback" href="mailto:info@homohug.org" style="color:#000000"><span style="color:#119fe2">for</span> feedback</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a id="asupport" href="tel:+39-331-4029415" style="font-size:13px;background-color:#15c60b;border:2px solid #15c60b;color:black;height:27px;text-decoration:none;">&nbsp;&nbsp;get support&nbsp;&nbsp;</a>
+   <a id="burger-menu" href="#" style="display:none;"><img src="/ACT_res/burger-menu2.png" style="width:58px;"></a><a id="ahome" href="http://actitu.de" target="_blank" style="color:black; text-decoration: none;"><img id="logo-hmm" src="/ACT_res/ACTlogo.png" style="width:48px;">&nbsp;Actitude</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a id="agithub" href="https://github.com/par7133/Actitude" style="color:#000000"><span style="color:#119fe2">on</span> github</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a id="afeedback" href="mailto:info@actitu.de" style="color:#000000"><span style="color:#119fe2">for</span> feedback</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a id="asupport" href="tel:+39-331-4029415" style="font-size:13px;background-color:#15c60b;border:2px solid #15c60b;color:black;height:27px;text-decoration:none;">&nbsp;&nbsp;get support&nbsp;&nbsp;</a>
 </div>
 </div>
 	
 	
 <div style="clear:both; float:left; padding:8px; width:15%; height:100%; text-align:center;">
 <div style="clear:both; float:left; padding:8px; width:15%; height:100%; text-align:center;">
 	<div style="padding-left:10px;text-align: left;">
 	<div style="padding-left:10px;text-align: left;">
 	  &nbsp;Download<br>	
 	  &nbsp;Download<br>	
-	  &nbsp;<a href="https://github.com/par7133/Homohug/archive/refs/tags/v1.1.9.zip">Release 1.1.9 (zip)</a><br>
-	  &nbsp;<a href="https://github.com/par7133/Homohug/archive/refs/tags/v1.1.9.tar.gz">Release 1.1.9 (tar.gz)</a><br>
+	  &nbsp;<a href="https://github.com/par7133/Actitude/archive/refs/tags/v1.2.0.zip">Release 1.2.0 (zip)</a><br>
+	  &nbsp;<a href="https://github.com/par7133/Actitude/archive/refs/tags/v1.2.0.tar.gz">Release 1.2.0 (tar.gz)</a><br>
 	</div>  
 	</div>  
     <br><br>
     <br><br>
     <img src="/ACT_res/ACTgenius.png" alt="ACT Genius" title="ACT Genius" style="position:relative; left:+6px; width:90%; border: 1px dashed #EEEEEE;">
     <img src="/ACT_res/ACTgenius.png" alt="ACT Genius" title="ACT Genius" style="position:relative; left:+6px; width:90%; border: 1px dashed #EEEEEE;">
@@ -109,21 +109,21 @@
         <span aria-hidden="true">&times;</span>
         <span aria-hidden="true">&times;</span>
      </button>
      </button>
 	
 	
-	   Hello and welcome to Homohug!<br><br>
+	   Hello and welcome to Actitude!<br><br>
 	   
 	   
-	   Homohug is a light and simple software on premise to get registrations to events or support.<br><br>
+	   Actitude is a light and simple software on premise to get registrations to events or support.<br><br>
 	   
 	   
-	   Homohug is released under GPLv3 license, it is supplied AS-IS and we do not take any responsibility for its misusage.<br><br>
+	   Actitude is released under GPLv3 license, it is supplied AS-IS and we do not take any responsibility for its misusage.<br><br>
 	   
 	   
-           Homohug name comes from a prank between two words: "homo" meaning our positive way to do stuff, for the homines, and "hug".<br><br>
+     Actitude name comes from a prank between two words: "active" meaning our positive way to do stuff and "attitude".<br><br>
      
      
 	   First step, use the left side panel password and salt fields to create the hash to insert in the config file. Remember to manually set there also the salt value.<br><br>
 	   First step, use the left side panel password and salt fields to create the hash to insert in the config file. Remember to manually set there also the salt value.<br><br>
 	   
 	   
-	   As you are going to run Homohug in the PHP process context, using a limited web server or phpfpm user, you must follow some simple directives for an optimal first setup:<br>
+	   As you are going to run Actitude in the PHP process context, using a limited web server or phpfpm user, you must follow some simple directives for an optimal first setup:<br>
 	   <ol>
 	   <ol>
 	   <li>Check the permissions of your "data" folder in your web app private path; and set its path in the config file.</li>
 	   <li>Check the permissions of your "data" folder in your web app private path; and set its path in the config file.</li>
 	   <li>In the data path create a ".ACT_history" and ".ACT_captchahistory" files and give them the write permission.</li>
 	   <li>In the data path create a ".ACT_history" and ".ACT_captchahistory" files and give them the write permission.</li>
-           <li>Finish to setup the configuration file apporpriately, in the specific:</li>
+     <li>Finish to setup the configuration file apporpriately, in the specific:</li>
      <ul>
      <ul>
        <li>Configure the APP_USE and APP_CONTEXT appropriately.</li>
        <li>Configure the APP_USE and APP_CONTEXT appropriately.</li>
        <li>Configure the DISPLAY attributes as required.</li>
        <li>Configure the DISPLAY attributes as required.</li>
@@ -133,7 +133,7 @@
 	   
 	   
 	   <br>	
 	   <br>	
      
      
-	   Hope you can enjoy it and let us know about any feedback: <a href="mailto:info@homohug.org" style="color:#e6d236;">info@homohug.org</a>
+	   Hope you can enjoy it and let us know about any feedback: <a href="mailto:info@actitu.de" style="color:#e6d236;">info@actitu.de</a>
 	   
 	   
 	</div>	
 	</div>	
   	
   	

+ 17 - 17
index.php

@@ -3,24 +3,24 @@
 /**
 /**
  * Copyright 2021, 2024 5 Mode
  * Copyright 2021, 2024 5 Mode
  *
  *
- * This file is part of Homohug.
+ * This file is part of Actitude.
  *
  *
- * Homohug is free software: you can redistribute it and/or modify
+ * Actitude is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * (at your option) any later version.
  *
  *
- * Homohug is distributed in the hope that it will be useful,
+ * Actitude is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  * GNU General Public License for more details.  
  * GNU General Public License for more details.  
  * 
  * 
  * You should have received a copy of the GNU General Public License
  * You should have received a copy of the GNU General Public License
- * along with Homohug. If not, see <https://www.gnu.org/licenses/>.
+ * along with Actitude. If not, see <https://www.gnu.org/licenses/>.
  *
  *
  * index.php
  * index.php
  * 
  * 
- * Homohug home page.
+ * Actitude home page.
  *
  *
  * @author Daniele Bonini <my25mb@aol.com>
  * @author Daniele Bonini <my25mb@aol.com>
  * @copyrights (c) 2021, 2024, 5 Mode      
  * @copyrights (c) 2021, 2024, 5 Mode      
@@ -537,20 +537,20 @@
 <!--
 <!--
     Copyright 2021, 2024 5 Mode
     Copyright 2021, 2024 5 Mode
 
 
-    This file is part of Homohug.
+    This file is part of Actitude.
 
 
-    Homohug is free software: you can redistribute it and/or modify
+    Actitude is free software: you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     it under the terms of the GNU General Public License as published by
     the Free Software Foundation, either version 3 of the License, or
     the Free Software Foundation, either version 3 of the License, or
     (at your option) any later version.
     (at your option) any later version.
 
 
-    Homohug is distributed in the hope that it will be useful,
+    Actitude is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
     GNU General Public License for more details.
     GNU General Public License for more details.
 
 
     You should have received a copy of the GNU General Public License
     You should have received a copy of the GNU General Public License
-    along with Homohug. If not, see <https://www.gnu.org/licenses/>.
+    along with Actitude. If not, see <https://www.gnu.org/licenses/>.
  -->
  -->
   
   
     
     
@@ -583,7 +583,7 @@
 
 
 <?php if(APP_USE === "PRIVATE"): ?>
 <?php if(APP_USE === "PRIVATE"): ?>
 <div class="header" style="background-color:#ffffff;z-index:90;">
 <div class="header" style="background-color:#ffffff;z-index:90;">
-   <a id="burger-menu" href="#" style="display:none;"><img src="/ACT_res/burger-menu2.png" style="width:58px;"></a><a id="ahome" href="http://homohug.org" target="_blank" style="color:black; text-decoration: none;"><img id="logo-hmm" src="/ACT_res/ACTlogo.png" style="width:48px;">&nbsp;Homohug</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a id="agithub" href="https://github.com/par7133/Homohug" style="color:#000000"><span style="color:#119fe2">on</span> github</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a id="afeedback" href="mailto:info@homohug.org" style="color:#000000"><span style="color:#119fe2">for</span> feedback</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a id="asupport" href="tel:+39-331-4029415" style="font-size:13px;background-color:#15c60b;border:2px solid #15c60b;color:black;height:27px;text-decoration:none;">&nbsp;&nbsp;get support&nbsp;&nbsp;</a><div id="pwd2" style="float:right;position:relative;top:+13px;display:none"><input type="password" id="Password2" name="Password2" placeholder="password" style="font-size:13px; background:#393939; color:#ffffff; width: 125px; border-radius:3px;" value="" autocomplete="off"></div>
+   <a id="burger-menu" href="#" style="display:none;"><img src="/ACT_res/burger-menu2.png" style="width:58px;"></a><a id="ahome" href="http://actitu.de" target="_blank" style="color:black; text-decoration: none;"><img id="logo-hmm" src="/ACT_res/ACTlogo.png" style="width:48px;">&nbsp;Actitude</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a id="agithub" href="https://github.com/par7133/Actitude" style="color:#000000"><span style="color:#119fe2">on</span> github</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a id="afeedback" href="mailto:info@actitu.de" style="color:#000000"><span style="color:#119fe2">for</span> feedback</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a id="asupport" href="tel:+39-331-4029415" style="font-size:13px;background-color:#15c60b;border:2px solid #15c60b;color:black;height:27px;text-decoration:none;">&nbsp;&nbsp;get support&nbsp;&nbsp;</a><div id="pwd2" style="float:right;position:relative;top:+13px;display:none"><input type="password" id="Password2" name="Password2" placeholder="password" style="font-size:13px; background:#393939; color:#ffffff; width: 125px; border-radius:3px;" value="" autocomplete="off"></div>
 </div>
 </div>
 <?php else: ?>
 <?php else: ?>
 <div class="header2" style="margin:0;padding:0;border-bottom:0px;text-align:center;">
 <div class="header2" style="margin:0;padding:0;border-bottom:0px;text-align:center;">
@@ -635,17 +635,17 @@
         <span aria-hidden="true">&times;</span>
         <span aria-hidden="true">&times;</span>
      </button>
      </button>
 	
 	
-	   Hello and welcome to Homohug!<br><br>
+	   Hello and welcome to Actitude!<br><br>
 	   
 	   
-	   Homohug is a light and simple software on premise to get registrations to events or support.<br><br>
+	   Actitude is a light and simple software on premise to get registrations to events or support.<br><br>
 	   
 	   
-	   Homohug is released under GPLv3 license, it is supplied AS-IS and we do not take any responsibility for its misusage.<br><br>
+	   Actitude is released under GPLv3 license, it is supplied AS-IS and we do not take any responsibility for its misusage.<br><br>
 	   
 	   
-           Homohug name comes from a prank between two words: "homo" meaning our positive way to do stuff, fot the homines, and "hug".<br><br>
+     Actitude name comes from a prank between two words: "active" meaning our positive way to do stuff and "attitude".<br><br>
      
      
 	   First step, use the left side panel password and salt fields to create the hash to insert in the config file. Remember to manually set there also the salt value.<br><br>
 	   First step, use the left side panel password and salt fields to create the hash to insert in the config file. Remember to manually set there also the salt value.<br><br>
 	   
 	   
-	   As you are going to run Homohug in the PHP process context, using a limited web server or phpfpm user, you must follow some simple directives for an optimal first setup:<br>
+	   As you are going to run Actitude in the PHP process context, using a limited web server or phpfpm user, you must follow some simple directives for an optimal first setup:<br>
 	   <ol>
 	   <ol>
 	   <li>Check the permissions of your "data" folder in your web app private path; and set its path in the config file.</li>
 	   <li>Check the permissions of your "data" folder in your web app private path; and set its path in the config file.</li>
 	   <li>In the data path create a ".ACT_history" and ".ACT_captchahistory" files and give them the write permission.</li>
 	   <li>In the data path create a ".ACT_history" and ".ACT_captchahistory" files and give them the write permission.</li>
@@ -659,7 +659,7 @@
 	   
 	   
 	   <br>	
 	   <br>	
      
      
-	   Hope you can enjoy it and let us know about any feedback: <a href="mailto:info@homohug.org" style="color:#e6d236;">info@homohug.org</a>
+	   Hope you can enjoy it and let us know about any feedback: <a href="mailto:info@actitu.de" style="color:#e6d236;">info@actitu.de</a>
 	   
 	   
 	</div>	
 	</div>	
 	<?php endif; ?>
 	<?php endif; ?>
@@ -709,7 +709,7 @@
        
        
     <?php if(APP_USE === "BUSINESS"): ?>
     <?php if(APP_USE === "BUSINESS"): ?>
     <div style="font-size:23px">
     <div style="font-size:23px">
-      <a id="ahome" href="http://homohug.org" target="_blank" style="color:black;"><img id="logo-act" src="/ACT_res/ACTlogo.png" style="position:relative;top:-25px;width:48px;margin:5px;">Powered by Homohug</a>
+      <a id="ahome" href="http://actitu.de" target="_blank" style="color:black;"><img id="logo-act" src="/ACT_res/ACTlogo.png" style="position:relative;top:-25px;width:48px;margin:5px;">Powered by Actitude</a>
     </div>
     </div>
     <?php endif; ?>&nbsp;
     <?php endif; ?>&nbsp;